org.ocleditor.parser
Interface IOclParseRunListener

All Known Implementing Classes:
OclMarkerCreator

public interface IOclParseRunListener

Objects that implements this interface gets informed about the parsing status.


Field Summary
static int SYNTAXCHECK
           
static int TYPECHECK
           
 
Method Summary
 void parseFailed(IOclParserError[] errors)
          Parsing failed with errors.
 void parseFinished()
          Parsing finished successfully.
 void parseStarted(int type)
          Parsing started.
 

Field Detail

SYNTAXCHECK

public static final int SYNTAXCHECK
See Also:
Constant Field Values

TYPECHECK

public static final int TYPECHECK
See Also:
Constant Field Values
Method Detail

parseStarted

public void parseStarted(int type)
Parsing started.

Parameters:
type - can be SYNTAXCHECK or TYPECHECK.

parseFinished

public void parseFinished()
Parsing finished successfully.


parseFailed

public void parseFailed(IOclParserError[] errors)
Parsing failed with errors.

Parameters:
errors - OCL parsing errors.