Package org.kie.api.builder
Interface Message
-
public interface MessageA Message generated by the building process of a KieModule
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMessage.Level
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumn()Returns the column number in the resource of the issue that caused the creation of this MessagelonggetId()Returns the unique identifier of this messageMessage.LevelgetLevel()Returns the message levelintgetLine()Returns the line number in the resource of the issue that caused the creation of this Messagejava.lang.StringgetPath()Returns the path of the resource that caused the creation of this Messagejava.lang.StringgetText()Return the text of this Message
-
-
-
Method Detail
-
getId
long getId()
Returns the unique identifier of this message
-
getLevel
Message.Level getLevel()
Returns the message level
-
getPath
java.lang.String getPath()
Returns the path of the resource that caused the creation of this Message
-
getLine
int getLine()
Returns the line number in the resource of the issue that caused the creation of this Message
-
getColumn
int getColumn()
Returns the column number in the resource of the issue that caused the creation of this Message
-
getText
java.lang.String getText()
Return the text of this Message
-
-