SWT LPEX
v3.0.5

Uses of Class
com.ibm.lpex.core.LpexDocumentLocation

Packages that use LpexDocumentLocation
com.ibm.lpex.alef This package provides advanced line-oriented editing functions for Eclipse technology plug-ins. 
com.ibm.lpex.alef.contentassist This package is a version of package org.eclipse.jface.text.contentassist modified for use with LPEX. 
com.ibm.lpex.cobol This package provides COBOL (Common Business Oriented Language) document parsers. 
com.ibm.lpex.core This package provides the base implementation of the LPEX editor widget. 
com.ibm.lpex.cpp This package provides C/C++ document parsers. 
com.ibm.lpex.java This package provides Java language document parsers. 
com.ibm.lpex.pli This package provides a PL/I document parser. 
 

Uses of LpexDocumentLocation in com.ibm.lpex.alef
 

Methods in com.ibm.lpex.alef that return LpexDocumentLocation
 LpexDocumentLocation LpexTextViewer.getLpexDocumentLocation(int offset)
          Returns the location inside the document section currently loaded in LPEX for the given offset in IDocument.
 

Methods in com.ibm.lpex.alef with parameters of type LpexDocumentLocation
 int LpexTextViewer.getDocOffset(LpexDocumentLocation documentLocation)
          Returns the offset in IDocument for the given location defined inside the document section currently loaded in LPEX.
 

Uses of LpexDocumentLocation in com.ibm.lpex.alef.contentassist
 

Methods in com.ibm.lpex.alef.contentassist with parameters of type LpexDocumentLocation
 boolean ICompletionProposalExtension.isValidFor(ITextViewer textViewer, LpexDocumentLocation location)
          Return whether this completion proposal is valid for the given position in the given document.
 void ContextInformationValidator.install(IContextInformation contextInformation, ITextViewer viewer, LpexDocumentLocation location)
          Install this validator for the given context information.
 boolean ContextInformationValidator.isContextInformationValid(LpexDocumentLocation location)
          Return whether the information that this validator is installed on, is still valid at the current document location.
 void IContextInformationValidator.install(IContextInformation info, ITextViewer viewer, LpexDocumentLocation documentLocation)
          Install this validator for the given context information.
 boolean IContextInformationValidator.isContextInformationValid(LpexDocumentLocation documentLocation)
          Return whether the information that this validator is installed on, is still valid at the current document location.
 void IContextInformationPresenter.install(IContextInformation info, ITextViewer viewer, LpexDocumentLocation documentLocation)
          Installs this presenter for the given context information.
 boolean IContextInformationPresenter.updatePresentation(LpexDocumentLocation documentLocation, TextPresentation presentation)
          Updates the given presentation of the given context information at the given document position.
 

Uses of LpexDocumentLocation in com.ibm.lpex.cobol
 

Methods in com.ibm.lpex.cobol with parameters of type LpexDocumentLocation
 String CobolParser.getLanguage(LpexDocumentLocation loc)
          Returns a string identifying the language segment at the specified location.
 

Uses of LpexDocumentLocation in com.ibm.lpex.core
 

Methods in com.ibm.lpex.core that return LpexDocumentLocation
 LpexDocumentLocation LpexCommonParser.getTokenLocation(LpexDocumentLocation loc)
          Returns the start of the language token at the specified document location.
protected  LpexDocumentLocation LpexCommonParser.tokenBegin(LpexDocumentLocation loc)
          Returns the start of a token at the specified document location.
protected  LpexDocumentLocation LpexCommonParser.tokenEnd(LpexDocumentLocation loc)
          Returns the end of a token at the specified document location.
protected  LpexDocumentLocation LpexCommonParser.matchToken(LpexDocumentLocation loc)
          Matches the token found at the specified document location.
static LpexDocumentLocation LpexMatch.match(LpexView lpexView, LpexDocumentLocation loc)
          Match a paranthesis / brace / square bracket / angle bracket.
static LpexDocumentLocation LpexMatch.match(LpexView lpexView, LpexDocumentLocation loc, boolean noisy)
          Match a paranthesis / brace / square bracket / angle bracket.
 LpexDocumentLocation LpexView.documentLocation()
          Returns the view's current (cursor) location in the document (or section of the document that is currently loaded in the editor).
 LpexDocumentLocation LpexView.documentLocation(int charOffset, int eolLength)
          Returns the location in the document (or section of the document that is currently loaded in the editor) which corresponds to the given Unicode-character offset in its underlying file (section).
 

Methods in com.ibm.lpex.core with parameters of type LpexDocumentLocation
 String LpexCommonParser.getLanguage(LpexDocumentLocation loc)
          Returns a string identifying the language segment at the specified location.
 String LpexCommonParser.getToken(LpexDocumentLocation loc)
          Returns the language token at the specified document location.
 LpexDocumentLocation LpexCommonParser.getTokenLocation(LpexDocumentLocation loc)
          Returns the start of the language token at the specified document location.
protected  LpexDocumentLocation LpexCommonParser.tokenBegin(LpexDocumentLocation loc)
          Returns the start of a token at the specified document location.
protected  LpexDocumentLocation LpexCommonParser.tokenEnd(LpexDocumentLocation loc)
          Returns the end of a token at the specified document location.
protected  LpexDocumentLocation LpexCommonParser.matchToken(LpexDocumentLocation loc)
          Matches the token found at the specified document location.
static LpexDocumentLocation LpexMatch.match(LpexView lpexView, LpexDocumentLocation loc)
          Match a paranthesis / brace / square bracket / angle bracket.
static LpexDocumentLocation LpexMatch.match(LpexView lpexView, LpexDocumentLocation loc, boolean noisy)
          Match a paranthesis / brace / square bracket / angle bracket.
 boolean LpexView.doDefaultCommand(LpexDocumentLocation documentLocation, String commandString)
          Runs the specified default editor command.
 boolean LpexView.doCommand(LpexDocumentLocation documentLocation, String commandString)
          Runs the specified command at the specified document (or document section) location.
 void LpexView.jump(LpexDocumentLocation documentLocation)
          Moves the cursor to the specified position in the document (or section of the document that is currently loaded in the editor).
 int LpexView.charOffset(LpexDocumentLocation documentLocation, int eolLength)
          Returns a document (or document section) location's Unicode-character offset in its underlying file (section).
 String LpexView.query(String parameter, LpexDocumentLocation documentLocation)
          Queries an editor parameter.
 int LpexView.queryInt(String parameter, LpexDocumentLocation documentLocation)
          Convenience method to query an editor integer parameter.
 boolean LpexView.queryOn(String parameter, LpexDocumentLocation documentLocation)
          Convenience method to query an editor on/off parameter.
 

Constructors in com.ibm.lpex.core with parameters of type LpexDocumentLocation
LpexDocumentLocation(LpexDocumentLocation documentLocation)
          This constructor creates a document location object representing the same location as the specified documentLocation.
 

Uses of LpexDocumentLocation in com.ibm.lpex.cpp
 

Methods in com.ibm.lpex.cpp with parameters of type LpexDocumentLocation
 String CppParser.getLanguage(LpexDocumentLocation loc)
          Returns a string identifying the language segment at the specified location.
 

Uses of LpexDocumentLocation in com.ibm.lpex.java
 

Methods in com.ibm.lpex.java with parameters of type LpexDocumentLocation
 String JavaParser.getLanguage(LpexDocumentLocation loc)
          Retrieve a string identifying the language segment at the specified location.
protected  void JavaParser.document(LpexDocumentLocation cursor)
          Documents a class / interface / method.
protected  void JavaParser.trace(LpexDocumentLocation cursor)
          Inserts trace call(s) for a method.
 

Uses of LpexDocumentLocation in com.ibm.lpex.pli
 

Methods in com.ibm.lpex.pli that return LpexDocumentLocation
protected  LpexDocumentLocation PliParser.matchToken(LpexDocumentLocation loc)
          Matches PL/I constructs (e.g., "PROC" - "END").
 

Methods in com.ibm.lpex.pli with parameters of type LpexDocumentLocation
 String PliParser.getLanguage(LpexDocumentLocation loc)
          Returns a string identifying the language segment at the specified location.
protected  LpexDocumentLocation PliParser.matchToken(LpexDocumentLocation loc)
          Matches PL/I constructs (e.g., "PROC" - "END").
 


SWT LPEX
v3.0.5

(C) Copyright IBM Corporation 1998, 2005.  All Rights Reserved.