Package com.adobe.xfa

Class NodeValidationInfo

java.lang.Object
com.adobe.xfa.NodeValidationInfo

public final class NodeValidationInfo extends Object
A class holding information about the validity of an XFA node's children, attributes or attribute values.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final String
    The invalid attribute or value found within the XFARichTextNode stored in oNode
    static final int
    The attribute is invalid.
    static final int
    The value of attribute is invalid.
    final int
    The invalid attribute, may be 0.
    final int
    The invalid enumerated value of the attribute specified by eAttr, may be 0.
    final int
    The availability based on the validation type.
    static final int
    The node is invalid.
    final int
    The version introduced based on the validation type.
    final Node
    The invalid node.
    static final int
    The rich text attribute or style value in aRichText is invalid
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Gets this object's validation info.

    Methods inherited from class java.lang.Object

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

    • NODE

      public static final int NODE
      The node is invalid.
      See Also:
    • ATTRIBUTE

      public static final int ATTRIBUTE
      The attribute is invalid.
      See Also:
    • ATTRIBUTEVALUE

      public static final int ATTRIBUTEVALUE
      The value of attribute is invalid.
      See Also:
    • RICHTEXT

      public static final int RICHTEXT
      The rich text attribute or style value in aRichText is invalid
      See Also:
    • eAttr

      public final int eAttr
      The invalid attribute, may be 0.
    • eCurrentValue

      public final int eCurrentValue
      The invalid enumerated value of the attribute specified by eAttr, may be 0.
    • aRichText

      public final String aRichText
      The invalid attribute or value found within the XFARichTextNode stored in oNode
    • nVersionIntro

      public final int nVersionIntro
      The version introduced based on the validation type.
    • oNode

      public final Node oNode
      The invalid node. If eAttr is not 0 this will be the parent of the attribute.
  • Method Details