Interface AttributeEditingContextDescription
-
@API(type=NOT_EXTENDABLE, src=PUBLIC) public interface AttributeEditingContextDescription
Provides language-independent information about the element and attribute name for which the value is edited.- Since:
- 15
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCurrentEditedAttributeValue()
Get the current value of the edited attribute as it appears in the Value combo box.java.lang.String
getEditedAttributeName()
Get the name of the edited attribute.NodeContext
getElementContext()
Get the context in which we are editing, information about the current element on which we are editing an attribute value.java.lang.String
getElementName()
Get the qname of the element for which the attribute is edited.
-
-
-
Method Detail
-
getEditedAttributeName
java.lang.String getEditedAttributeName()
Get the name of the edited attribute.- Returns:
- the name of the edited attribute.
-
getCurrentEditedAttributeValue
java.lang.String getCurrentEditedAttributeValue()
Get the current value of the edited attribute as it appears in the Value combo box.- Returns:
- the value of the edited attribute.
- Since:
- 15.2
-
getElementName
java.lang.String getElementName()
Get the qname of the element for which the attribute is edited.- Returns:
- the qname of the element for which the attribute is edited.
-
getElementContext
NodeContext getElementContext()
Get the context in which we are editing, information about the current element on which we are editing an attribute value.- Returns:
- The element for which we are currently editing attributes.
- Since:
- 15.2
-
-