|
What this is
Other links
The source code
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Micro//S ystems, Inc. Portions Copyright 1997-2001 Sun
* Micro//S ystems, Inc. All Rights Reserved.
*/
package org.netbeans.spi.debugger.jpda;
import java.beans.PropertyChangeListener;
import org.netbeans.api.debugger.jpda.LineBreakpoint;
/**
* Defines bridge to editor and src hierarchy. It allows to use different
* source viewer for debugger (like some UML view).
*
* @author Jan Jancura
*/
public abstract class EditorContext {
/** Annotation type constant. */
public static final String BREAKPOINT_ANNOTATION_TYPE =
new String ("Breakpoint");
/** Annotation type constant. */
public static final String DISABLED_BREAKPOINT_ANNOTATION_TYPE =
new String ("DisabledBreakpoint");
/** Annotation type constant. */
public static final String CONDITIONAL_BREAKPOINT_ANNOTATION_TYPE =
new String ("CondBreakpoint");
/** Annotation type constant. */
public static final String DISABLED_CONDITIONAL_BREAKPOINT_ANNOTATION_TYPE =
new String ("DisabledCondBreakpoint");
/** Annotation type constant. */
public static final String CURRENT_LINE_ANNOTATION_TYPE =
new String ("CurrentPC");
/** Annotation type constant. */
public static final String CALL_STACK_FRAME_ANNOTATION_TYPE =
new String ("CallSite");
/** Property name constant. */
public static final String PROP_LINE_NUMBER = new String ("lineNumber");
/**
* Shows source with given url on given line number.
*
* @param url a url of source to be shown
* @param lineNumber a number of line to be shown
* @param timeStamp a time stamp to be used
*/
public abstract boolean showSource (
String url,
int lineNumber,
Object timeStamp
);
/**
* Creates a new time stamp.
*
* @param timeStamp a new time stamp
*/
public abstract void createTimeStamp (Object timeStamp);
/**
* Disposes given time stamp.
*
* @param timeStamp a time stamp to be disposed
*/
public abstract void disposeTimeStamp (Object timeStamp);
/**
* Adds annotation to given url on given line.
*
* @param url a url of source annotation should be set into
* @param lineNumber a number of line annotation should be set into
* @param annotationType a type of annotation to be set
* @param timeStamp a time stamp to be used
*
* @return annotation
*/
public abstract Object annotate (
String url,
int lineNumber,
String annotationType,
Object timeStamp
);
/**
* Returns line number given annotation is associated with.
*
* @param annotation a annotation
* @param timeStamp a time stamp to be used
*
* @return line number given annotation is associated with
*/
public abstract int getLineNumber (
Object annotation,
Object timeStamp
);
/**
* Removes given annotation.
*/
public abstract void removeAnnotation (
Object annotation
);
/**
* Returns number of line currently selected in editor or
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.