Skip to content
Snippets Groups Projects
Commit fafd1033 authored by jlanuti's avatar jlanuti
Browse files

Updated for JEM usage

parent e1fa5002
No related branches found
No related tags found
No related merge requests found
...@@ -143,6 +143,12 @@ public abstract class ComponentTeamScanner implements IComponentConstants { ...@@ -143,6 +143,12 @@ public abstract class ComponentTeamScanner implements IComponentConstants {
getPluginComponentMap().put(PLUGIN_EXPRESSION_INTERNET, server); getPluginComponentMap().put(PLUGIN_EXPRESSION_INTERNET, server);
componentTeams.add(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 // Add a "team" for the unknown references
ComponentTeam unknown = new ComponentTeam(COMPONENT_TEAM_UNKNOWN); ComponentTeam unknown = new ComponentTeam(COMPONENT_TEAM_UNKNOWN);
componentTeams.add(unknown); componentTeams.add(unknown);
......
...@@ -21,6 +21,7 @@ public interface IComponentConstants { ...@@ -21,6 +21,7 @@ public interface IComponentConstants {
public static final String COMPONENT_TEAM_RDB = "RDB"; //$NON-NLS-1$ 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_WEB_SERVICES = "Web Services"; //$NON-NLS-1$
public static final String COMPONENT_TEAM_SERVER = "Server"; //$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$ public static final String COMPONENT_TEAM_UNKNOWN = "Unknown"; //$NON-NLS-1$
// General Expressions for plugin name matching // General Expressions for plugin name matching
...@@ -50,6 +51,7 @@ public interface IComponentConstants { ...@@ -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_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_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$
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment