commit | 1ab042916342490dca78266649fc749030642483 | [log] [tgz] |
---|---|---|
author | jlanuti <jlanuti> | Tue May 15 18:42:20 2007 +0000 |
committer | jlanuti <jlanuti> | Tue May 15 18:42:20 2007 +0000 |
tree | d5d6c0414d5f30ba9f61e905fc48ee76d19442aa | |
parent | af791f22ea450de70c508783e085035dea08566a [diff] |
switched for Dali rename to jpt
diff --git a/releng.wtptools/api/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/ComponentTeamScanner.java b/releng.wtptools/api/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/ComponentTeamScanner.java index e3b1731..05c11e5 100644 --- a/releng.wtptools/api/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/ComponentTeamScanner.java +++ b/releng.wtptools/api/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/ComponentTeamScanner.java
@@ -153,10 +153,10 @@ 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); + // Create the JPT team with associated plugins + ComponentTeam jpt = new ComponentTeam(COMPONENT_TEAM_JPT); + getPluginComponentMap().put(PLUGIN_EXPRESSION_JPT,jpt); + componentTeams.add(jpt); // Add a "team" for the unknown references ComponentTeam unknown = new ComponentTeam(COMPONENT_TEAM_UNKNOWN);
diff --git a/releng.wtptools/api/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/IComponentConstants.java b/releng.wtptools/api/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/IComponentConstants.java index cb1e25a..a813eb6 100644 --- a/releng.wtptools/api/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/IComponentConstants.java +++ b/releng.wtptools/api/org.eclipse.wtp.releng.tools.component.core/src/org/eclipse/wtp/releng/tools/component/adopters/IComponentConstants.java
@@ -23,7 +23,7 @@ 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_JSF = "JSF"; //$NON-NLS-1$ - public static final String COMPONENT_TEAM_JPA = "JPA"; //$NON-NLS-1$ + public static final String COMPONENT_TEAM_JPT = "JPT"; //$NON-NLS-1$ public static final String COMPONENT_TEAM_UNKNOWN = "Unknown"; //$NON-NLS-1$ // General Expressions for plugin name matching @@ -57,6 +57,6 @@ 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$ + public static final String PLUGIN_EXPRESSION_JPT = "org.eclipse.jpt.*"; //$NON-NLS-1$ }