Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/LocalVariable.java')
-rw-r--r--org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/LocalVariable.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/LocalVariable.java b/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/LocalVariable.java
index 307bde2f1..a79bd6108 100644
--- a/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/LocalVariable.java
+++ b/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/LocalVariable.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 IBM Corporation 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
@@ -9,9 +9,10 @@
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi;
-
-
-public interface LocalVariable extends Mirror , Comparable {
+/**
+ * See http://docs.oracle.com/javase/6/docs/jdk/api/jpda/jdi/com/sun/jdi/LocalVariable.html
+ */
+public interface LocalVariable extends Mirror, Comparable<LocalVariable> {
public boolean equals(Object arg1);
public String genericSignature();
public int hashCode();
@@ -19,6 +20,6 @@ public interface LocalVariable extends Mirror , Comparable {
public boolean isVisible(StackFrame arg1);
public String name();
public String signature();
- public com.sun.jdi.Type type() throws ClassNotLoadedException;
+ public Type type() throws ClassNotLoadedException;
public String typeName();
}

Back to the top