Browse Source

removed Java 1.6 override annotations

Andreas Mülder 14 years ago
parent
commit
a861b5313b

+ 15 - 0
plugins/org.yakindu.sct.simulation.core/src/org/yakindu/sct/simulation/core/debugmodel/IDebugConstants.java

@@ -1,5 +1,20 @@
+/**
+ * Copyright (c) 2011 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.simulation.core.debugmodel;
 
+/**
+ * 
+ * @author andreas muelder - Initial contribution and API
+ * 
+ */
 public interface IDebugConstants {
 
 	public static final String ID_DEBUG_MODEL = "org.yakindu.sct.debug";

+ 15 - 1
plugins/org.yakindu.sct.simulation.core/src/org/yakindu/sct/simulation/core/debugmodel/SCTDebugElement.java

@@ -1,7 +1,21 @@
+/**
+ * Copyright (c) 2011 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.simulation.core.debugmodel;
 
 import org.eclipse.core.runtime.PlatformObject;
-
+/**
+ * 
+ * @author andreas muelder - Initial contribution and API
+ *
+ */
 public class SCTDebugElement extends PlatformObject {
 
 	private String resourceString;

+ 11 - 1
plugins/org.yakindu.sct.simulation.core/src/org/yakindu/sct/simulation/core/debugmodel/SCTDebugTarget.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2011 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.simulation.core.debugmodel;
 
 import org.eclipse.core.resources.IMarkerDelta;
@@ -133,7 +143,7 @@ public class SCTDebugTarget extends SCTDebugElement implements IDebugTarget {
 		return this;
 	}
 
-	@Override
+	
 	public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
 		if (adapter == SGraphSimulationSession.class)
 			return thread.getAdapter(SGraphSimulationSession.class);

+ 17 - 7
plugins/org.yakindu.sct.simulation.core/src/org/yakindu/sct/simulation/core/debugmodel/SCTDebugThread.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2011 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.simulation.core.debugmodel;
 
 import java.util.ArrayList;
@@ -65,33 +75,33 @@ public class SCTDebugThread extends SCTDebugElement implements IThread,
 		return true;
 	}
 
-	@Override
+	
 	public String getModelIdentifier() {
 		return IDebugConstants.ID_DEBUG_MODEL;
 	}
 
-	@Override
+	
 	public void stateEntered(Vertex vertex) {
 		activeStates.add(vertex);
 	}
 
-	@Override
+	
 	public void stateLeft(Vertex vertex) {
 		activeStates.remove(vertex);
 
 	}
 
-	@Override
+	
 	public void transitionFired(Transition transition) {
 		// Nothing to do
 	}
 
-	@Override
+	
 	public void variableValueChanged(String variableName, Object value) {
 		// Nothing to do
 	}
 
-	@Override
+	
 	public void eventRaised(String eventName) {
 		// Nothing to do
 	}
@@ -187,7 +197,7 @@ public class SCTDebugThread extends SCTDebugElement implements IThread,
 		return target;
 	}
 
-	@Override
+	
 	public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
 		if (adapter == SGraphSimulationSession.class)
 			return session;

+ 24 - 28
plugins/org.yakindu.sct.simulation.core/src/org/yakindu/sct/simulation/core/debugmodel/SCTStackFrame.java

@@ -44,118 +44,114 @@ public class SCTStackFrame extends SCTDebugElement implements IStackFrame {
 		this.state = state;
 	}
 
-	@Override
 	public String getModelIdentifier() {
 		return IDebugConstants.ID_DEBUG_MODEL;
 	}
 
-	@Override
 	public boolean canStepInto() {
 		return thread.canStepInto();
 	}
 
-	@Override
 	public boolean canStepOver() {
 		return thread.canStepOver();
 	}
 
-	@Override
 	public boolean canStepReturn() {
 		return thread.canStepReturn();
 	}
 
-	@Override
+	
 	public boolean isStepping() {
 		return thread.isStepping();
 	}
 
-	@Override
+	
 	public void stepInto() throws DebugException {
 		thread.stepInto();
 	}
 
-	@Override
+	
 	public void stepOver() throws DebugException {
 		thread.stepOver();
 	}
 
-	@Override
+	
 	public void stepReturn() throws DebugException {
 		thread.stepReturn();
 	}
 
-	@Override
+	
 	public boolean canResume() {
 		return thread.canResume();
 	}
 
-	@Override
+	
 	public boolean canSuspend() {
 		return thread.canSuspend();
 	}
 
-	@Override
+	
 	public boolean isSuspended() {
 		return thread.isSuspended();
 	}
 
-	@Override
+	
 	public void resume() throws DebugException {
 		thread.resume();
 
 	}
 
-	@Override
+	
 	public void suspend() throws DebugException {
 		thread.suspend();
 	}
 
-	@Override
+	
 	public boolean canTerminate() {
 		return thread.canTerminate();
 	}
 
-	@Override
+	
 	public boolean isTerminated() {
 		return thread.isTerminated();
 	}
 
-	@Override
+	
 	public void terminate() throws DebugException {
 		thread.terminate();
 	}
 
-	@Override
+	
 	public SCTDebugThread getThread() {
 		return thread;
 	}
 
-	@Override
+	
 	public IVariable[] getVariables() throws DebugException {
 		return new IVariable[] {};
 	}
 
-	@Override
+	
 	public boolean hasVariables() throws DebugException {
 		return false;
 	}
 
-	@Override
+	
 	public int getLineNumber() throws DebugException {
 		return -1;
 	}
 
-	@Override
+	
 	public int getCharStart() throws DebugException {
 		return -1;
 	}
 
-	@Override
+	
 	public int getCharEnd() throws DebugException {
 		return -1;
 	}
 
-	@Override
+	
 	public String getName() throws DebugException {
 		List<String> qfnFragments = new ArrayList<String>();
 		qfnFragments.add(state.getName());
@@ -189,12 +185,12 @@ public class SCTStackFrame extends SCTDebugElement implements IStackFrame {
 
 	}
 
-	@Override
+	
 	public IRegisterGroup[] getRegisterGroups() throws DebugException {
 		return new IRegisterGroup[] {};
 	}
 
-	@Override
+	
 	public boolean hasRegisterGroups() throws DebugException {
 		return false;
 	}
@@ -203,7 +199,7 @@ public class SCTStackFrame extends SCTDebugElement implements IStackFrame {
 		return (SCTDebugTarget) thread.getDebugTarget();
 	}
 
-	@Override
+	
 	public ILaunch getLaunch() {
 		return thread.getLaunch();
 	}
@@ -212,12 +208,12 @@ public class SCTStackFrame extends SCTDebugElement implements IStackFrame {
 		return state;
 	}
 
-	@Override
+	
 	public String getResourceString() {
 		return state.eResource().getURI().toPlatformString(true);
 	}
 
-	@Override
+	
 	public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
 		if (adapter == SGraphSimulationSession.class)
 			return thread.getAdapter(SGraphSimulationSession.class);

+ 10 - 0
plugins/org.yakindu.sct.simulation.core/src/org/yakindu/sct/simulation/core/extensions/Extensions.java

@@ -1,3 +1,13 @@
+/**
+ * Copyright (c) 2011 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.simulation.core.extensions;
 
 import java.util.ArrayList;

+ 15 - 0
plugins/org.yakindu.sct.simulation.core/src/org/yakindu/sct/simulation/core/extensions/IExtensionPoints.java

@@ -1,5 +1,20 @@
+/**
+ * Copyright (c) 2011 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.simulation.core.extensions;
 
+/**
+ * 
+ * @author andreas muelder - Initial contribution and API
+ * 
+ */
 public interface IExtensionPoints {
 
 	public static final String EXECUTION_BUILDER = "org.yakindu.sct.simulation.core.sgraph.executionbuilder";