|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.eclipse.ocl.lpg.AbstractBasicEnvironment
public abstract class AbstractBasicEnvironment
Partial implementation of the BasicEnvironment
interface, providing
default behaviours for most features.
Constructor Summary | |
---|---|
protected |
AbstractBasicEnvironment(BasicEnvironment parent)
Initializes me with the specified parent environment, which should be of the same type as me. |
Method Summary | ||
---|---|---|
void |
analyzerError(java.lang.String problemMessage,
java.lang.String problemContext,
int startOffset,
int endOffset)
Convenience method invoking getProblemHandler().analyzerProblem
with a ProblemHandler.errorSeverity . |
|
void |
analyzerError(java.lang.String problemMessage,
java.lang.String problemContext,
java.util.List<?> problemObjects)
Convenience method invoking getProblemHandler().analyzerProblem
with a ProblemHandler.errorSeverity . |
|
void |
analyzerError(java.lang.String problemMessage,
java.lang.String problemContext,
java.lang.Object problemObject)
Convenience method invoking getProblemHandler().analyzerProblem
with a ProblemHandler.errorSeverity . |
|
void |
analyzerWarning(java.lang.String problemMessage,
java.lang.String problemContext,
java.lang.Object problemObject)
Convenience method invoking getProblemHandler().analyzerProblem
with a ProblemHandler.warningSeverity . |
|
protected java.util.Map<Option<?>,java.lang.Object> |
basicGetOptions()
|
|
java.util.Map<Option<?>,java.lang.Object> |
clearOptions()
Clears all options. |
|
protected ProblemHandler |
createDefaultProblemHandler(AbstractParser parser)
|
|
protected FormattingHelper |
createFormattingHelper()
Obtains the new or existing formatting-helper for this environment to use. |
|
|
getAdapter(java.lang.Class<T> adapterType)
The abstract environment implementation is adaptable. |
|
CSTNode |
getASTMapping(java.lang.Object object)
Return the mapping of an astNode to its originating cstNode, so that AST-based analysis may report error messages exploiting the CST context, or to support incremental AST/CST update. |
|
java.util.Map<java.lang.Object,CSTNode> |
getASTNodeToCSTNodeMap()
|
|
FormattingHelper |
getFormatter()
Return the message formatter that may be used to format object-related contributions to problem messages. |
|
java.util.Map<Option<?>,java.lang.Object> |
getOptions()
Obtains a copy of my map of options. |
|
BasicEnvironment |
getParent()
|
|
AbstractParser |
getParser()
Return the syntactic parser from which source tokens and text amy be obtained. |
|
ProblemHandler |
getProblemHandler()
Obtains a problem handler to service lexer, parser, analyzer, validator, ... |
|
|
getValue(Option<T> option)
Obtains the value of the specified option's setting in the my options map. |
|
void |
initASTMapping(java.lang.Object astNode,
CSTNode cstNode)
Initialize the mapping of an object (typically an astNode) to its originating cstNode, so that AST-based analysis may report error messages exploiting the CST context, or to support incremental AST/CST update. |
|
void |
initASTMapping(java.lang.Object fromAstNode,
CSTNode cstNode,
java.lang.Object toAstNode)
Initialize the asymmetric mapping of an object (typically an astNode) to its originating cstNode, and of a cstNode to its consequent object (typically an astNode) so that AST-based analysis may report error messages exploiting the CST context, or to support incremental AST/CST update. |
|
boolean |
isEnabled(Option<java.lang.Boolean> option)
Queries whether the specified boolean-valued option is enabled. |
|
void |
lexerError(int errorCode,
int startOffset,
int endOffset)
Convenience method invoking getProblemHandler().lexerProblem
with a ProblemHandler.errorSeverity . |
|
void |
parserError(int errorCode,
int leftToken,
int rightToken,
java.lang.String tokenText)
Convenience method invoking getProblemHandler().parserProblem
with a ProblemHandler.errorSeverity . |
|
void |
problem(ProblemHandler.Severity severity,
ProblemHandler.Phase phase,
java.lang.String problemMessage,
java.lang.String problemContext,
java.lang.Object problemObject)
Generically reports a problem about some object. |
|
|
putOptions(java.util.Map<? extends Option<T>,? extends T> options)
Adds options to apply to my behaviour. |
|
|
removeOption(Option<T> option)
Removes the specified option. |
|
|
removeOptions(java.util.Collection<Option<T>> options)
Removes the specified options. |
|
void |
setASTNodeToCSTNodeMap(java.util.Map<java.lang.Object,CSTNode> astNodeToCstNodeMap)
|
|
|
setOption(Option<T> option,
T value)
Add an option to apply to my behaviour. |
|
protected void |
setParent(BasicEnvironment parent)
Assigns me a parent environment after construction. |
|
void |
setParser(AbstractParser parser)
Define the syntactic parser from which source tokens and text amy be obtained. |
|
ProblemHandler |
setProblemHandler(ProblemHandler newProblemHandler)
Define the handler for any problem reports. |
|
void |
utilityError(java.lang.String problemMessage,
java.lang.String problemContext,
java.lang.Object problemObject)
Convenience method invoking getProblemHandler().utilityProblem
with a ProblemHandler.errorSeverity . |
|
void |
validatorError(java.lang.String problemMessage,
java.lang.String problemContext,
java.lang.Object problemObject)
Convenience method invoking getProblemHandler().validatorProblem
with a ProblemHandler.errorSeverity . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected AbstractBasicEnvironment(BasicEnvironment parent)
parent
- an environment of the same type as me (or null
)Method Detail |
---|
public <T> T getAdapter(java.lang.Class<T> adapterType)
ProblemHandler
interface.
Subclasses may override or extend this implementation.
getAdapter
in interface Adaptable
T
- the requested adapter interfaceadapterType
- the requested adapter interface
null
if this environment does not adapt to itpublic void analyzerError(java.lang.String problemMessage, java.lang.String problemContext, java.lang.Object problemObject)
BasicEnvironment
getProblemHandler().analyzerProblem
with a ProblemHandler.errorSeverity
.
analyzerError
in interface BasicEnvironment
problemMessage
- message describing the problemproblemContext
- optional message describing the reporting contextproblemObject
- optional object associated with the problempublic void analyzerError(java.lang.String problemMessage, java.lang.String problemContext, java.util.List<?> problemObjects)
BasicEnvironment
getProblemHandler().analyzerProblem
with a ProblemHandler.errorSeverity
.
analyzerError
in interface BasicEnvironment
problemMessage
- message describing the problemproblemContext
- optional message describing the reporting contextproblemObjects
- optional sequence of objects associated with the problempublic void analyzerError(java.lang.String problemMessage, java.lang.String problemContext, int startOffset, int endOffset)
BasicEnvironment
getProblemHandler().analyzerProblem
with a ProblemHandler.errorSeverity
.
analyzerError
in interface BasicEnvironment
problemMessage
- message describing the problemproblemContext
- optional message describing the reporting contextstartOffset
- character index at the start of the errorendOffset
- character index beyond the end of the errorpublic void analyzerWarning(java.lang.String problemMessage, java.lang.String problemContext, java.lang.Object problemObject)
BasicEnvironment
getProblemHandler().analyzerProblem
with a ProblemHandler.warningSeverity
.
analyzerWarning
in interface BasicEnvironment
problemMessage
- message describing the problemproblemContext
- optional message describing the reporting contextproblemObject
- optional object associated with the problemprotected ProblemHandler createDefaultProblemHandler(AbstractParser parser)
public BasicEnvironment getParent()
public AbstractParser getParser()
BasicEnvironment
getParser
in interface BasicEnvironment
public java.util.Map<java.lang.Object,CSTNode> getASTNodeToCSTNodeMap()
public CSTNode getASTMapping(java.lang.Object object)
BasicEnvironment
getASTMapping
in interface BasicEnvironment
public FormattingHelper getFormatter()
BasicEnvironment
getFormatter
in interface BasicEnvironment
protected FormattingHelper createFormattingHelper()
AbstractFormattingHelper
; subclasses may override.
public ProblemHandler getProblemHandler()
BasicEnvironment
getProblemHandler
in interface BasicEnvironment
public void initASTMapping(java.lang.Object astNode, CSTNode cstNode)
BasicEnvironment
initASTMapping
in interface BasicEnvironment
public void initASTMapping(java.lang.Object fromAstNode, CSTNode cstNode, java.lang.Object toAstNode)
BasicEnvironment2
initASTMapping
in interface BasicEnvironment2
fromAstNode
- source of the AST-to-CST mappingcstNode
- target of the AST-to-CST mapping and source of the CST-to-AST
mappingtoAstNode
- target of the CST-to-AST mappingpublic void lexerError(int errorCode, int startOffset, int endOffset)
BasicEnvironment
getProblemHandler().lexerProblem
with a ProblemHandler.errorSeverity
.
lexerError
in interface BasicEnvironment
errorCode
- the ParserErrorCodes value identifying the errorstartOffset
- character index at the start of the errorendOffset
- character index beyond the end of the errorpublic void parserError(int errorCode, int leftToken, int rightToken, java.lang.String tokenText)
BasicEnvironment
getProblemHandler().parserProblem
with a ProblemHandler.errorSeverity
.
parserError
in interface BasicEnvironment
errorCode
- the ParserErrorCodes value identifying the errorleftToken
- the lexical token index at the left hand edge of the errorrightToken
- the lexical token index at the right hand edge of the errortokenText
- additional text apprropriate to the ParserErrorCodes value.public void setASTNodeToCSTNodeMap(java.util.Map<java.lang.Object,CSTNode> astNodeToCstNodeMap)
protected void setParent(BasicEnvironment parent)
null
if I previously had one.
parent
- my new parentpublic void setParser(AbstractParser parser)
BasicEnvironment
setParser
in interface BasicEnvironment
public ProblemHandler setProblemHandler(ProblemHandler newProblemHandler)
BasicEnvironment
setProblemHandler
in interface BasicEnvironment
public void utilityError(java.lang.String problemMessage, java.lang.String problemContext, java.lang.Object problemObject)
BasicEnvironment
getProblemHandler().utilityProblem
with a ProblemHandler.errorSeverity
.
utilityError
in interface BasicEnvironment
problemMessage
- message describing the problemproblemContext
- optional message describing the reporting contextproblemObject
- optional object associated with the problempublic void validatorError(java.lang.String problemMessage, java.lang.String problemContext, java.lang.Object problemObject)
BasicEnvironment
getProblemHandler().validatorProblem
with a ProblemHandler.errorSeverity
.
validatorError
in interface BasicEnvironment
problemMessage
- message describing the problemproblemContext
- optional message describing the reporting contextproblemObject
- optional object associated with the problempublic void problem(ProblemHandler.Severity severity, ProblemHandler.Phase phase, java.lang.String problemMessage, java.lang.String problemContext, java.lang.Object problemObject)
BasicEnvironment
problem
in interface BasicEnvironment
severity
- the severity of the problemphase
- the phase in which the problem was encounteredproblemMessage
- message describing the problemproblemContext
- optional message describing the reporting contextproblemObject
- optional object associated with the problemprotected java.util.Map<Option<?>,java.lang.Object> basicGetOptions()
public java.util.Map<Option<?>,java.lang.Object> getOptions()
Customizable
getOptions
in interface Customizable
public <T> void setOption(Option<T> option, T value)
Customizable
setOption
in interface Customizable
option
- the optionvalue
- the option's valuepublic <T> void putOptions(java.util.Map<? extends Option<T>,? extends T> options)
Customizable
putOptions
in interface Customizable
options
- the optionspublic <T> T removeOption(Option<T> option)
Customizable
removeOption
in interface Customizable
option
- the option to remove
public <T> java.util.Map<Option<T>,T> removeOptions(java.util.Collection<Option<T>> options)
Customizable
removeOptions
in interface Customizable
options
- the options to remove
public java.util.Map<Option<?>,java.lang.Object> clearOptions()
Customizable
clearOptions
in interface Customizable
public boolean isEnabled(Option<java.lang.Boolean> option)
Customizable
isEnabled
in interface Customizable
option
- an option
public <T> T getValue(Option<T> option)
Customizable
getValue
in interface Customizable
option
- the option to query
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |