From fafd10337ff715f48373024e219d3199582c1922 Mon Sep 17 00:00:00 2001 From: jlanuti <jlanuti> Date: Tue, 19 Dec 2006 22:00:58 +0000 Subject: [PATCH] Updated for JEM usage --- .../tools/component/adopters/ComponentTeamScanner.java | 6 ++++++ .../tools/component/adopters/IComponentConstants.java | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) 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 f957fa91b..0414c249b 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 @@ public abstract class ComponentTeamScanner implements IComponentConstants { 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 f17499e45..b269d38fb 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 interface IComponentConstants { 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 interface IComponentConstants { 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$ } -- GitLab