Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-03-11 16:45:07 +0000
committerBrian Vosburgh2013-03-11 22:22:44 +0000
commit0ef16ba74e9260eb7d5fb47c07a8c8481a69fe5b (patch)
tree369105f43c92605dd0010b48c32dc5384688316a /common/plugins/org.eclipse.jpt.common.core/src
parent3b9f08973dcac72d16ae50dfeedd46ce5767f030 (diff)
downloadwebtools.dali-0ef16ba74e9260eb7d5fb47c07a8c8481a69fe5b.tar.gz
webtools.dali-0ef16ba74e9260eb7d5fb47c07a8c8481a69fe5b.tar.xz
webtools.dali-0ef16ba74e9260eb7d5fb47c07a8c8481a69fe5b.zip
rename EmfTools to EFactoryTools
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.core/src')
-rw-r--r--common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/resource/xml/EFactoryTools.java (renamed from common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/resource/xml/EmfTools.java)4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/resource/xml/EmfTools.java b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/resource/xml/EFactoryTools.java
index e3d21218aa..9ab824f4c1 100644
--- a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/resource/xml/EmfTools.java
+++ b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/resource/xml/EFactoryTools.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2010 Oracle. All rights reserved.
+ * Copyright (c) 2009, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
@@ -24,7 +24,7 @@ import org.eclipse.emf.ecore.EObject;
* @version 2.3
* @since 2.3
*/
-public class EmfTools {
+public class EFactoryTools {
public static <T extends EObject> T create(EFactory eFactory, EClass eClass, Class<T> javaClass) {
for (EClassifier factoryEClassifier : eFactory.getEPackage().getEClassifiers()) {

Back to the top