Package net.sourceforge.plantuml.syntax
Class SyntaxResult
- java.lang.Object
-
- net.sourceforge.plantuml.syntax.SyntaxResult
-
public class SyntaxResult extends Object
-
-
Constructor Summary
Constructors Constructor Description SyntaxResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addErrorText(String error)
void
generateDiagramDescriptionForError(OutputStream os, FileFormatOption fileFormatOption)
String
getDescription()
Collection<String>
getErrors()
LineLocation
getLineLocation()
UmlDiagramType
getUmlDiagramType()
boolean
hasCmapData()
boolean
isError()
void
setCmapData(boolean hasCmapData)
void
setDescription(String description)
void
setError(boolean isError)
void
setLineLocation(LineLocation lineLocation)
void
setSystemError(PSystemError systemError)
void
setUmlDiagramType(UmlDiagramType umlDiagramType)
-
-
-
Method Detail
-
getUmlDiagramType
public UmlDiagramType getUmlDiagramType()
-
isError
public boolean isError()
-
getDescription
public String getDescription()
-
getErrors
public Collection<String> getErrors()
-
setUmlDiagramType
public void setUmlDiagramType(UmlDiagramType umlDiagramType)
-
setError
public void setError(boolean isError)
-
setDescription
public void setDescription(String description)
-
addErrorText
public void addErrorText(String error)
-
hasCmapData
public final boolean hasCmapData()
-
setCmapData
public final void setCmapData(boolean hasCmapData)
-
setSystemError
public void setSystemError(PSystemError systemError)
-
generateDiagramDescriptionForError
public void generateDiagramDescriptionForError(OutputStream os, FileFormatOption fileFormatOption) throws IOException
- Throws:
IOException
-
setLineLocation
public void setLineLocation(LineLocation lineLocation)
-
getLineLocation
public LineLocation getLineLocation()
-
-