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

updates for JSF and JPA

parent cf864585
No related branches found
No related tags found
No related merge requests found
...@@ -146,9 +146,18 @@ public abstract class ComponentTeamScanner implements IComponentConstants { ...@@ -146,9 +146,18 @@ public abstract class ComponentTeamScanner implements IComponentConstants {
// Create the JEM team with associated plugins // Create the JEM team with associated plugins
ComponentTeam jem = new ComponentTeam(COMPONENT_TEAM_JEM); ComponentTeam jem = new ComponentTeam(COMPONENT_TEAM_JEM);
getPluginComponentMap().put(PLUGIN_EXPRESSION_JEM,jem); getPluginComponentMap().put(PLUGIN_EXPRESSION_JEM,jem);
getPluginComponentMap().put(PLUGIN_EXPRESSION_JEM_,jem);
componentTeams.add(jem); componentTeams.add(jem);
// Create the JSF team with associated plugins
ComponentTeam jsf = new ComponentTeam(COMPONENT_TEAM_JSF);
getPluginComponentMap().put(PLUGIN_EXPRESSION_JSF,jsf);
componentTeams.add(jsf);
// Create the JPA team with associated plugins
ComponentTeam jpa = new ComponentTeam(COMPONENT_TEAM_JPA);
getPluginComponentMap().put(PLUGIN_EXPRESSION_JPA,jpa);
componentTeams.add(jpa);
// 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);
......
...@@ -22,6 +22,8 @@ public interface IComponentConstants { ...@@ -22,6 +22,8 @@ public interface IComponentConstants {
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_JEM = "Jem"; //$NON-NLS-1$
public static final String COMPONENT_TEAM_JSF = "JSF"; //$NON-NLS-1$
public static final String COMPONENT_TEAM_JPA = "JPA"; //$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
...@@ -52,6 +54,9 @@ public interface IComponentConstants { ...@@ -52,6 +54,9 @@ public interface IComponentConstants {
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$
public static final String PLUGIN_EXPRESSION_JEM_ = "org.eclipse.jem"; //$NON-NLS-1$
public static final String PLUGIN_EXPRESSION_JSF = "org.eclipse.jst.jsf.*"; //$NON-NLS-1$
public static final String PLUGIN_EXPRESSION_JPA = "org.eclipse.jpa.*"; //$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