Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'othersrc/OTRE/src/org/eclipse/objectteams/otre/util/SuperMethodDescriptor.java')
-rw-r--r--othersrc/OTRE/src/org/eclipse/objectteams/otre/util/SuperMethodDescriptor.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/othersrc/OTRE/src/org/eclipse/objectteams/otre/util/SuperMethodDescriptor.java b/othersrc/OTRE/src/org/eclipse/objectteams/otre/util/SuperMethodDescriptor.java
new file mode 100644
index 000000000..02b9c04de
--- /dev/null
+++ b/othersrc/OTRE/src/org/eclipse/objectteams/otre/util/SuperMethodDescriptor.java
@@ -0,0 +1,33 @@
+/**********************************************************************
+ * This file is part of the "Object Teams Runtime Environment"
+ *
+ * Copyright 2008 Technical University Berlin, Germany.
+ *
+ * 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
+ * $Id: SuperMethodDescriptor.java 23408 2010-02-03 18:07:35Z stephan $
+ *
+ * Please visit http://www.objectteams.org for updates and contact.
+ *
+ * Contributors:
+ * Technical University Berlin - Initial API and implementation
+ **********************************************************************/
+package org.eclipse.objectteams.otre.util;
+
+/** Representation of a base-super method call, requiring a special access method. */
+public class SuperMethodDescriptor {
+ public String methodName;
+ public String declaringClass;
+ public String superClass;
+ public String signature;
+ public SuperMethodDescriptor(String methodName, String declaringClass,
+ String superClass, String signature) {
+ super();
+ this.methodName = methodName;
+ this.declaringClass = declaringClass;
+ this.superClass = superClass;
+ this.signature = signature;
+ }
+}

Back to the top