### Eclipse Workspace Patch 1.0 #P org.eclipse.jst.j2ee Index: j2eeplugin/org/eclipse/jst/j2ee/internal/plugin/J2EEPreferences.java =================================================================== RCS file: /cvsroot/webtools/jeetools/plugins/org.eclipse.jst.j2ee/j2eeplugin/org/eclipse/jst/j2ee/internal/plugin/J2EEPreferences.java,v retrieving revision 1.12 diff -u -r1.12 J2EEPreferences.java --- j2eeplugin/org/eclipse/jst/j2ee/internal/plugin/J2EEPreferences.java 22 Apr 2009 19:14:54 -0000 1.12 +++ j2eeplugin/org/eclipse/jst/j2ee/internal/plugin/J2EEPreferences.java 27 Aug 2009 13:41:51 -0000 @@ -108,6 +108,10 @@ * @since 3.0 */ static String ID_PERSPECTIVE_HIERARCHY_VIEW = "perspective_hierarchy_view_id"; //$NON-NLS-1$ + /** + * @since 3.1 + */ + static String SHOW_JAVA_EE_MODULE_DEPENDENCY_PAGE = "showJavaEEModuleDependencyPage"; //$NON-NLS-1$ } @@ -152,6 +156,7 @@ final static boolean USE_EAR_LIBRARIES_JDT_EXPORT = false; final static String ID_PERSPECTIVE_HIERARCHY_VIEW = "org.eclipse.ui.navigator.ProjectExplorer"; //$NON-NLS-1$ final static boolean ALLOW_CLASSPATH_DEP = true; + final static boolean SHOW_JAVA_EE_MODULE_DEPENDENCY_PAGE = true; } private Plugin owner = null; @@ -198,6 +203,7 @@ String perspectiveID = ProductManager.getProperty(IProductConstants.ID_PERSPECTIVE_HIERARCHY_VIEW); getPreferences().setDefault(Keys.ID_PERSPECTIVE_HIERARCHY_VIEW, (perspectiveID != null) ? perspectiveID : Defaults.ID_PERSPECTIVE_HIERARCHY_VIEW); getPreferences().setDefault(Keys.ALLOW_CLASSPATH_DEP, Defaults.ALLOW_CLASSPATH_DEP); + getPreferences().setDefault(Keys.SHOW_JAVA_EE_MODULE_DEPENDENCY_PAGE, Defaults.SHOW_JAVA_EE_MODULE_DEPENDENCY_PAGE); } Index: plugin.xml =================================================================== RCS file: /cvsroot/webtools/jeetools/plugins/org.eclipse.jst.j2ee/plugin.xml,v retrieving revision 1.128.2.1 diff -u -r1.128.2.1 plugin.xml --- plugin.xml 1 Jul 2009 02:51:44 -0000 1.128.2.1 +++ plugin.xml 27 Aug 2009 13:41:51 -0000 @@ -750,9 +750,13 @@ properties="projectFacet" class="org.eclipse.jst.j2ee.internal.common.FacetedProjectPropertyTester"> - - - + + +