Package org.camunda.bpm.engine
Interface Problem
- 
- All Known Implementing Classes:
- ProblemImpl
 
 public interface ProblemInterface of a problem occurred during parsing
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumn()The column where the problem occursjava.util.List<java.lang.String>getElementIds()The ids of all involved elements in the problem.intgetLine()The line where the problem occursjava.lang.StringgetMainElementId()The id of the main element causing the problem.java.lang.StringgetMessage()The message of this problem
 
- 
- 
- 
Method Detail- 
getMessagejava.lang.String getMessage() The message of this problem
 - 
getLineint getLine() The line where the problem occurs
 - 
getColumnint getColumn() The column where the problem occurs
 - 
getMainElementIdjava.lang.String getMainElementId() The id of the main element causing the problem. It can benullin case the element doesn't have an id.
 - 
getElementIdsjava.util.List<java.lang.String> getElementIds() The ids of all involved elements in the problem. It can be an empty list in case the elements do not have assigned ids.
 
- 
 
-