Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'othersrc/OTRE/src/org/eclipse/objectteams/otre/util/BoundMethod.java')
-rw-r--r--othersrc/OTRE/src/org/eclipse/objectteams/otre/util/BoundMethod.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/othersrc/OTRE/src/org/eclipse/objectteams/otre/util/BoundMethod.java b/othersrc/OTRE/src/org/eclipse/objectteams/otre/util/BoundMethod.java
deleted file mode 100644
index 4a4a8fbdc..000000000
--- a/othersrc/OTRE/src/org/eclipse/objectteams/otre/util/BoundMethod.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/**********************************************************************
- * This file is part of the "Object Teams Runtime Environment"
- *
- * Copyright 2004-2009 Berlin Institute of Technology, 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: BoundMethod.java 23408 2010-02-03 18:07:35Z stephan $
- *
- * Please visit http://www.objectteams.org for updates and contact.
- *
- * Contributors:
- * Berlin Institute of Technology - Initial API and implementation
- **********************************************************************/
-package org.eclipse.objectteams.otre.util;
-
-/**
- * @author Christine Hundt
- * @version $Id: BoundMethod.java 23408 2010-02-03 18:07:35Z stephan $
- */
-public class BoundMethod {
- private String name;
- private String signature;
- private boolean isCallin;
-
-// private MethodBinding binding;
-
- public BoundMethod(String methodName, String methodSignature, boolean isCallin, MethodBinding methodBinding) {
- name = methodName;
- signature = methodSignature;
- this.isCallin = isCallin;
-// binding = methodBinding;
- }
-
- public String getName() {
- return name;
- }
-
- public String getSignature() {
- return signature;
- }
-
- public boolean getIsCallin() {
- return this.isCallin;
- }
-}

Back to the top