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 SummaryAll 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- 
getErrorTextjava.lang.String getErrorText() Get the text representation of the report.- Returns:
- The text.
 
 - 
getErrorHTMLjava.lang.String getErrorHTML() Get the html representation of the report.- Returns:
- The html string.
 
 - 
getDocumentsjava.util.Map<java.lang.String,java.lang.String> getDocuments() Get the external documents. (model -> report)- Returns:
- The external documents.
 
 
- 
 
-