Package jadex.bridge
Interface IErrorReport
- 
- All Superinterfaces:
 java.io.Serializable
- All Known Implementing Classes:
 ErrorReport
public interface IErrorReport extends java.io.SerializableThe interface for an error report of loaded models. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.String>getDocuments()Get the external documents.java.lang.StringgetErrorHTML()Get the html representation of the report.java.lang.StringgetErrorText()Get the text representation of the report. 
 - 
 
- 
- 
Method Detail
- 
getErrorText
java.lang.String getErrorText()
Get the text representation of the report.- Returns:
 - The text.
 
 
- 
getErrorHTML
java.lang.String getErrorHTML()
Get the html representation of the report.- Returns:
 - The html string.
 
 
- 
getDocuments
java.util.Map<java.lang.String,java.lang.String> getDocuments()
Get the external documents. (model -> report)- Returns:
 - The external documents.
 
 
 - 
 
 -