Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortle2010-07-12 00:26:47 +0000
committertle2010-07-12 00:26:47 +0000
commit64c830c6451ad40bf5b63c38f031aee5fe8c8c41 (patch)
treec7c1b3bbc3c2328aa8dc95103b888c24cecd2033 /jpa/plugins/org.eclipse.jpt.jaxb.ui/src
parent45c3c7d0c769159d221646f0a11f409e0e125284 (diff)
downloadwebtools.dali-64c830c6451ad40bf5b63c38f031aee5fe8c8c41.tar.gz
webtools.dali-64c830c6451ad40bf5b63c38f031aee5fe8c8c41.tar.xz
webtools.dali-64c830c6451ad40bf5b63c38f031aee5fe8c8c41.zip
315814 - JAXB Class Generation Wizard - bindings files support for XBD and XML file extensions
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jaxb.ui/src')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/classesgen/ClassesGeneratorWizardPage.java4
1 files changed, 2 insertions, 2 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 1574703c62..e658066e7f 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
@@ -76,8 +76,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$
-
+ static public String XJB_FILTER = "*.xjb;*.xml;*.xbc"; //$NON-NLS-1$
+
public static final String HELP_CONTEXT_ID = JptUiPlugin.PLUGIN_ID + ".configure_jaxb_class_generation_dialog"; //$NON-NLS-1$
private final IJavaProject javaProject;

Back to the top