Package jadex.bridge
Class ErrorReport
- java.lang.Object
- 
- jadex.bridge.ErrorReport
 
- 
- All Implemented Interfaces:
- IErrorReport,- java.io.Serializable
 
 public class ErrorReport extends java.lang.Object implements IErrorReport Error report that holds information about model errors.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ErrorReport()ErrorReport(java.lang.String errtext, java.lang.String errhtml, java.util.Map documents)
 - 
Method SummaryAll Methods Instance Methods Concrete 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.voidsetDocuments(java.util.Map<java.lang.String,java.lang.String> documents)Set the documents.voidsetErrorHTML(java.lang.String errhtml)Set the errhtml.voidsetErrorText(java.lang.String errtext)Set the errtext.
 
- 
- 
- 
Method Detail- 
getErrorTextpublic java.lang.String getErrorText() Get the text representation of the report.- Specified by:
- getErrorTextin interface- IErrorReport
- Returns:
- The text.
 
 - 
setErrorTextpublic void setErrorText(java.lang.String errtext) Set the errtext.- Parameters:
- errtext- The errtext to set.
 
 - 
getErrorHTMLpublic java.lang.String getErrorHTML() Get the html representation of the report.- Specified by:
- getErrorHTMLin interface- IErrorReport
- Returns:
- The html string.
 
 - 
setErrorHTMLpublic void setErrorHTML(java.lang.String errhtml) Set the errhtml.- Parameters:
- errhtml- The errhtml to set.
 
 - 
getDocumentspublic java.util.Map<java.lang.String,java.lang.String> getDocuments() Get the external documents. (model -> report)- Specified by:
- getDocumentsin interface- IErrorReport
- Returns:
- The external documents.
 
 - 
setDocumentspublic void setDocuments(java.util.Map<java.lang.String,java.lang.String> documents) Set the documents.- Parameters:
- documents- The documents to set.
 
 
- 
 
-