Class OutputManager.AttributeInfo
java.lang.Object
io.sf.carte.echosvg.transcoder.svg2svg.OutputManager.AttributeInfo
- Enclosing class:
- OutputManager
To store the informations about an attribute.
- 
Field SummaryFieldsModifier and TypeFieldDescriptioncharThe attribute value delimiter.booleanWhether the attribute value contains entity references.char[]The attribute name.char[]The space before the name.char[]The space before '='.char[]The space after '='.The attribute value.
- 
Constructor SummaryConstructorsConstructorDescriptionAttributeInfo(char[] sp, char[] n, char[] sp1, char[] sp2, String val, char delim, boolean entity) Creates a new AttributeInfo.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanTells whether the name of the attribute represented by this class equals the given string.
- 
Field Details- 
spacepublic char[] spaceThe space before the name.
- 
namepublic char[] nameThe attribute name.
- 
space1public char[] space1The space before '='.
- 
space2public char[] space2The space after '='.
- 
valueThe attribute value.
- 
delimiterpublic char delimiterThe attribute value delimiter.
- 
entityReferencespublic boolean entityReferencesWhether the attribute value contains entity references.
 
- 
- 
Constructor Details- 
AttributeInfopublic AttributeInfo(char[] sp, char[] n, char[] sp1, char[] sp2, String val, char delim, boolean entity) Creates a new AttributeInfo.
 
- 
- 
Method Details- 
isAttributeTells whether the name of the attribute represented by this class equals the given string.
 
-