commit | fafd10337ff715f48373024e219d3199582c1922 | [log] [tgz] |
---|---|---|
author | jlanuti <jlanuti> | Tue Dec 19 22:00:58 2006 +0000 |
committer | jlanuti <jlanuti> | Tue Dec 19 22:00:58 2006 +0000 |
tree | 4139ecc9e59f495758770b307a565de65101023a | |
parent | e1fa5002049511292c205d066d85a2d33eb8dc7b [diff] |
Updated for JEM usage
diff --git a/archive/releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/ComponentTeamScanner.java b/archive/releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/ComponentTeamScanner.java index f957fa9..0414c24 100644 --- a/archive/releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/ComponentTeamScanner.java +++ b/archive/releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/ComponentTeamScanner.java
@@ -143,6 +143,12 @@ getPluginComponentMap().put(PLUGIN_EXPRESSION_INTERNET, server); componentTeams.add(server); + // Create the JEM team with associated plugins + ComponentTeam jem = new ComponentTeam(COMPONENT_TEAM_JEM); + getPluginComponentMap().put(PLUGIN_EXPRESSION_JEM,jem); + getPluginComponentMap().put(PLUGIN_EXPRESSION_JEM_,jem); + componentTeams.add(jem); + // Add a "team" for the unknown references ComponentTeam unknown = new ComponentTeam(COMPONENT_TEAM_UNKNOWN); componentTeams.add(unknown);
diff --git a/archive/releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/IComponentConstants.java b/archive/releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/IComponentConstants.java index f17499e..b269d38 100644 --- a/archive/releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/IComponentConstants.java +++ b/archive/releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/IComponentConstants.java
@@ -21,6 +21,7 @@ public static final String COMPONENT_TEAM_RDB = "RDB"; //$NON-NLS-1$ public static final String COMPONENT_TEAM_WEB_SERVICES = "Web Services"; //$NON-NLS-1$ public static final String COMPONENT_TEAM_SERVER = "Server"; //$NON-NLS-1$ + public static final String COMPONENT_TEAM_JEM = "Jem"; //$NON-NLS-1$ public static final String COMPONENT_TEAM_UNKNOWN = "Unknown"; //$NON-NLS-1$ // General Expressions for plugin name matching @@ -50,6 +51,7 @@ public static final String PLUGIN_EXPRESSION_SERVER = "org.eclipse..st.server.*"; //$NON-NLS-1$ public static final String PLUGIN_EXPRESSION_INTERNET = "org.eclipse..st.internet.*"; //$NON-NLS-1$ - + public static final String PLUGIN_EXPRESSION_JEM = "org.eclipse.jem.*"; //$NON-NLS-1$ + public static final String PLUGIN_EXPRESSION_JEM_ = "org.eclipse.jem"; //$NON-NLS-1$ }