Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jpa
diff options
context:
space:
mode:
Diffstat (limited to 'jpa')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/classesgen/ClassesGeneratorWizardPage.java41
1 files changed, 20 insertions, 21 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/classesgen/ClassesGeneratorWizardPage.java b/jpa/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/classesgen/ClassesGeneratorWizardPage.java
index c618a71824..b5a997e600 100644
--- a/jpa/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/classesgen/ClassesGeneratorWizardPage.java
+++ b/jpa/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/classesgen/ClassesGeneratorWizardPage.java
@@ -73,6 +73,8 @@ import org.osgi.framework.Bundle;
*/
public class ClassesGeneratorWizardPage extends NewTypeWizardPage {
static public String JPT_ECLIPSELINK_UI_PLUGIN_ID = "org.eclipse.jpt.eclipselink.ui"; //$NON-NLS-1$
+ static public String XML_FILTER = "*.xml"; //$NON-NLS-1$
+ static public String XJB_FILTER = "*.xjb"; //$NON-NLS-1$
private final IJavaProject javaProject;
@@ -456,10 +458,10 @@ public class ClassesGeneratorWizardPage extends NewTypeWizardPage {
public void widgetSelected(SelectionEvent e) {
- String fileName = promptFile("*.xml");
- if( ! StringTools.stringIsEmpty(fileName)) {
+ String filePath = promptFile(XML_FILTER);
+ if( ! StringTools.stringIsEmpty(filePath)) {
- catalogText.setText(makeRelativeToProjectPath(fileName));
+ catalogText.setText(makeRelativeToProjectPath(filePath));
}
}
});
@@ -519,10 +521,10 @@ public class ClassesGeneratorWizardPage extends NewTypeWizardPage {
public void widgetSelected(SelectionEvent e) {
- String fileName = promptFile("*.xjb");
- if( ! StringTools.stringIsEmpty(fileName)) {
-
- tableDataModel.add(makeRelativeToProjectPath(fileName));
+ String filePath = promptFile(XJB_FILTER);
+ if( ! StringTools.stringIsEmpty(filePath)) {
+
+ addBindingsFile(filePath, tableDataModel);
tableViewer.refresh();
}
}
@@ -543,7 +545,7 @@ public class ClassesGeneratorWizardPage extends NewTypeWizardPage {
return;
}
String bindingsFileName = (String)selection.getFirstElement();
- removeBindingsFileName(bindingsFileName);
+ removeBindingsFile(bindingsFileName);
tableViewer.refresh();
}
@@ -558,19 +560,16 @@ public class ClassesGeneratorWizardPage extends NewTypeWizardPage {
IPath relativePath = path.makeRelativeTo(javaProject.getProject().getLocation());
return relativePath.toOSString();
}
-
- private void removeBindingsFileName(String bindingsName) {
- String name = this.getBindingsFileName(bindingsName);
- this.bindingsFileNames.remove(name);
+
+ private void addBindingsFile(String filePath, final ArrayList<String> tableDataModel) {
+ String relativePath = this.makeRelativeToProjectPath(filePath);
+ if( ! tableDataModel.contains(relativePath)) {
+ tableDataModel.add(relativePath);
+ }
}
- private String getBindingsFileName(String bindingsName) {
- for(String name: this.bindingsFileNames) {
- if(name.equals(bindingsName)) {
- return name;
- }
- }
- return null;
+ private void removeBindingsFile(String bindingsName) {
+ this.bindingsFileNames.remove(bindingsName);
}
private IBaseLabelProvider buildLabelProvider() {
@@ -585,13 +584,13 @@ public class ClassesGeneratorWizardPage extends NewTypeWizardPage {
* The Add button was clicked, its action invokes this action which should
* prompt the user to select a file and return it.
*/
- private String promptFile(String extension) {
+ private String promptFile(String filter) {
String projectPath= javaProject.getProject().getLocation().toString();
FileDialog dialog = new FileDialog(getShell());
dialog.setText(JptJaxbUiMessages.ClassesGeneratorWizardPage_chooseABindingsFile);
dialog.setFilterPath(projectPath);
- dialog.setFilterExtensions(new String[] {extension}); //$NON-NLS-1$
+ dialog.setFilterExtensions(new String[] {filter});
String filePath = dialog.open();
return (filePath != null) ? filePath : null;

Back to the top