| org.eclipse.pde.core.ISourceObject
All known Subclasses: org.eclipse.pde.internal.core.schema.SchemaElementReference, org.eclipse.pde.internal.core.plugin.PluginObject,
ISourceObject | public interface ISourceObject (Code) | | This interface indicates that a model object is created by parsing an
editable source file and can be traced back to a particular location in the
file.
since: 2.0 |
Method Summary | |
public int | getStartLine() Returns the line in the source file where the source representation of
this object starts, or -1 if not known. | public int | getStopLine() Returns the line in the source file where the source representation of
this object stops, or -1 if not known. |
getStartLine | public int getStartLine()(Code) | | Returns the line in the source file where the source representation of
this object starts, or -1 if not known.
the first line in the source file |
getStopLine | public int getStopLine()(Code) | | Returns the line in the source file where the source representation of
this object stops, or -1 if not known.
the last line in the source file |
|
|