Class OutputManager.AttributeInfo

java.lang.Object
io.sf.carte.echosvg.transcoder.svg2svg.OutputManager.AttributeInfo
Enclosing class:
OutputManager

public static class OutputManager.AttributeInfo extends Object
To store the informations about an attribute.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    char
    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

    Constructors
    Constructor
    Description
    AttributeInfo(char[] sp, char[] n, char[] sp1, char[] sp2, String val, char delim, boolean entity)
    Creates a new AttributeInfo.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Tells whether the name of the attribute represented by this class equals the given string.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • space

      public char[] space
      The space before the name.
    • name

      public char[] name
      The attribute name.
    • space1

      public char[] space1
      The space before '='.
    • space2

      public char[] space2
      The space after '='.
    • value

      public String value
      The attribute value.
    • delimiter

      public char delimiter
      The attribute value delimiter.
    • entityReferences

      public boolean entityReferences
      Whether 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

      public boolean isAttribute(String s)
      Tells whether the name of the attribute represented by this class equals the given string.