瀏覽代碼

Renaming and copyright comments.

tomqc86@googlemail.com 11 年之前
父節點
當前提交
a6221b0a64

+ 10 - 0
plugins/org.yakindu.sct.refactoring/src/org/yakindu/sct/refactoring/utils/RefactoringHelper.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2013 committers of YAKINDU and others.
+ * 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
+ * Contributors:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.refactoring.utils;
 
 import java.util.ArrayList;

+ 2 - 2
test-plugins/org.yakindu.sct.refactoring.tests/src/org/yakindu/sct/refactoring/refactor/RefactoringTest.java

@@ -17,7 +17,7 @@ import org.eclipse.xtext.parser.IParser;
 import org.junit.Assert;
 import org.yakindu.sct.model.sgraph.State;
 import org.yakindu.sct.model.sgraph.Statechart;
-import org.yakindu.sct.refactoring.refactor.util.SctEqualityHelper;
+import org.yakindu.sct.refactoring.refactor.util.StatechartEqualityHelper;
 import org.yakindu.sct.refactoring.test.models.RefactoringTestModels;
 
 import com.google.inject.Inject;
@@ -36,7 +36,7 @@ public class RefactoringTest {
 	protected RefactoringTestModels models;
 
 	protected void compareStatecharts(Statechart initial, Statechart expected) {
-		SctEqualityHelper equalityHelper = new SctEqualityHelper();
+		StatechartEqualityHelper equalityHelper = new StatechartEqualityHelper();
 		if (!equalityHelper.equals(initial, expected)) {
 			Assert.fail("Equality check on statecharts failed!");
 		}

+ 10 - 0
test-plugins/org.yakindu.sct.refactoring.tests/src/org/yakindu/sct/refactoring/refactor/ViewBasedRefactoringTest.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2013 committers of YAKINDU and others.
+ * 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
+ * Contributors:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.refactoring.refactor;
 
 import java.util.Collections;

+ 10 - 0
test-plugins/org.yakindu.sct.refactoring.tests/src/org/yakindu/sct/refactoring/refactor/impl/ExtractSubdiagramRefactoringTest.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2013 committers of YAKINDU and others.
+ * 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
+ * Contributors:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.refactoring.refactor.impl;
 
 import static org.yakindu.sct.refactoring.test.models.RefactoringTestModels.EXTRACT_SUBDIAGRAM;

+ 10 - 0
test-plugins/org.yakindu.sct.refactoring.tests/src/org/yakindu/sct/refactoring/refactor/impl/GroupStatesIntoCompositeRefactoringTest.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2013 committers of YAKINDU and others.
+ * 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
+ * Contributors:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.refactoring.refactor.impl;
 
 import static org.yakindu.sct.refactoring.test.models.RefactoringTestModels.EXPECTED_STATECHART;

+ 10 - 0
test-plugins/org.yakindu.sct.refactoring.tests/src/org/yakindu/sct/refactoring/refactor/impl/InlineSubdiagramRefactoringTest.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2013 committers of YAKINDU and others.
+ * 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
+ * Contributors:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.refactoring.refactor.impl;
 
 import static org.yakindu.sct.refactoring.test.models.RefactoringTestModels.INLINE_SUBDIAGRAM;

+ 11 - 1
test-plugins/org.yakindu.sct.refactoring.tests/src/org/yakindu/sct/refactoring/refactor/util/SctEqualityHelper.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2013 committers of YAKINDU and others.
+ * 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
+ * Contributors:
+ * 	committers of YAKINDU - initial API and implementation
+ * 
+ */
 package org.yakindu.sct.refactoring.refactor.util;
 
 import org.eclipse.emf.ecore.EAttribute;
@@ -15,7 +25,7 @@ import org.eclipse.emf.ecore.util.FeatureMapUtil;
  *
  */
 @SuppressWarnings("serial")
-public class SctEqualityHelper extends EqualityHelper{
+public class StatechartEqualityHelper extends EqualityHelper{
 
 	@Override
 	public boolean equals(EObject eObject1, EObject eObject2) {