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 Summary
Modifier and TypeFieldDescriptionchar
The attribute value delimiter.boolean
Whether 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 Summary
ConstructorDescriptionAttributeInfo
(char[] sp, char[] n, char[] sp1, char[] sp2, String val, char delim, boolean entity) Creates a new AttributeInfo. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Tells whether the name of the attribute represented by this class equals the given string.
-
Field Details
-
space
public char[] spaceThe space before the name. -
name
public char[] nameThe attribute name. -
space1
public char[] space1The space before '='. -
space2
public char[] space2The space after '='. -
value
The attribute value. -
delimiter
public char delimiterThe attribute value delimiter. -
entityReferences
public boolean entityReferencesWhether the attribute value contains entity references.
-
-
Constructor Details
-
AttributeInfo
public AttributeInfo(char[] sp, char[] n, char[] sp1, char[] sp2, String val, char delim, boolean entity) Creates a new AttributeInfo.
-
-
Method Details
-
isAttribute
Tells whether the name of the attribute represented by this class equals the given string.
-