Package com.itextpdf.forms.xfdf
Class AttributeObject
- java.lang.Object
-
- com.itextpdf.forms.xfdf.AttributeObject
-
public class AttributeObject extends java.lang.Object
Represents the attribute of any XFDF element.
-
-
Constructor Summary
Constructors Constructor Description AttributeObject(java.lang.String name, java.lang.String value)
Creates an instance with given attribute name and value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Returns attribute name.java.lang.String
getValue()
Returns attribute value.
-
-
-
Constructor Detail
-
AttributeObject
public AttributeObject(java.lang.String name, java.lang.String value)
Creates an instance with given attribute name and value.- Parameters:
name
- the name of the attribute, constrained by XML attributes specification.value
- the value of the attribute, constrained by XML attributes specification.
-
-