Package org.apache.batik.dom.util
Class XLinkSupport
- java.lang.Object
-
- org.apache.batik.dom.util.XLinkSupport
-
- All Implemented Interfaces:
XMLConstants
public class XLinkSupport extends java.lang.Object implements XMLConstants
This class provides support for XLink features.
-
-
Field Summary
-
Fields inherited from interface org.apache.batik.constants.XMLConstants
XLINK_HREF_ATTRIBUTE, XLINK_HREF_QNAME, XLINK_NAMESPACE_URI, XLINK_PREFIX, XML_BASE_ATTRIBUTE, XML_BASE_QNAME, XML_CDATA_END, XML_CHAR_AMP, XML_CHAR_APOS, XML_CHAR_GT, XML_CHAR_LT, XML_CHAR_QUOT, XML_CHAR_REF_PREFIX, XML_CHAR_REF_SUFFIX, XML_CLOSE_TAG_END, XML_CLOSE_TAG_START, XML_DEFAULT_VALUE, XML_DOUBLE_DASH, XML_DOUBLE_QUOTE, XML_ENTITY_AMP, XML_ENTITY_APOS, XML_ENTITY_GT, XML_ENTITY_LT, XML_ENTITY_QUOT, XML_EQUAL_QUOT, XML_EQUAL_SIGN, XML_EVENTS_EVENT_ATTRIBUTE, XML_EVENTS_NAMESPACE_URI, XML_ID_ATTRIBUTE, XML_ID_QNAME, XML_LANG_ATTRIBUTE, XML_LANG_QNAME, XML_NAMESPACE_URI, XML_OPEN_TAG_END_CHILDREN, XML_OPEN_TAG_END_NO_CHILDREN, XML_OPEN_TAG_START, XML_PREFIX, XML_PRESERVE_VALUE, XML_PROCESSING_INSTRUCTION_END, XML_SPACE, XML_SPACE_ATTRIBUTE, XML_SPACE_QNAME, XML_TAB, XML_VERSION_10, XML_VERSION_11, XMLNS_NAMESPACE_URI, XMLNS_PREFIX
-
-
Constructor Summary
Constructors Constructor Description XLinkSupport()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
getXLinkActuate(org.w3c.dom.Element elt)
Returns the value of the 'xlink:actuate' attribute of the given element.static java.lang.String
getXLinkArcRole(org.w3c.dom.Element elt)
Returns the value of the 'xlink:arcrole' attribute of the given element.static java.lang.String
getXLinkHref(org.w3c.dom.Element elt)
Returns the value of the 'xlink:href' attribute of the given element.static java.lang.String
getXLinkRole(org.w3c.dom.Element elt)
Returns the value of the 'xlink:role' attribute of the given element.static java.lang.String
getXLinkShow(org.w3c.dom.Element elt)
Returns the value of the 'xlink:show' attribute of the given element.static java.lang.String
getXLinkTitle(org.w3c.dom.Element elt)
Returns the value of the 'xlink:title' attribute of the given element.static java.lang.String
getXLinkType(org.w3c.dom.Element elt)
Returns the value of the 'xlink:type' attribute of the given element.static void
setXLinkActuate(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:actuate' attribute of the given element.static void
setXLinkArcRole(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:arcrole' attribute of the given element.static void
setXLinkHref(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:href' attribute of the given element.static void
setXLinkRole(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:role' attribute of the given element.static void
setXLinkShow(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:show' attribute of the given element.static void
setXLinkTitle(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:title' attribute of the given element.static void
setXLinkType(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:type' attribute of the given element.
-
-
-
Method Detail
-
getXLinkType
public static java.lang.String getXLinkType(org.w3c.dom.Element elt)
Returns the value of the 'xlink:type' attribute of the given element.
-
setXLinkType
public static void setXLinkType(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:type' attribute of the given element.
-
getXLinkRole
public static java.lang.String getXLinkRole(org.w3c.dom.Element elt)
Returns the value of the 'xlink:role' attribute of the given element.
-
setXLinkRole
public static void setXLinkRole(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:role' attribute of the given element.
-
getXLinkArcRole
public static java.lang.String getXLinkArcRole(org.w3c.dom.Element elt)
Returns the value of the 'xlink:arcrole' attribute of the given element.
-
setXLinkArcRole
public static void setXLinkArcRole(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:arcrole' attribute of the given element.
-
getXLinkTitle
public static java.lang.String getXLinkTitle(org.w3c.dom.Element elt)
Returns the value of the 'xlink:title' attribute of the given element.
-
setXLinkTitle
public static void setXLinkTitle(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:title' attribute of the given element.
-
getXLinkShow
public static java.lang.String getXLinkShow(org.w3c.dom.Element elt)
Returns the value of the 'xlink:show' attribute of the given element.
-
setXLinkShow
public static void setXLinkShow(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:show' attribute of the given element.
-
getXLinkActuate
public static java.lang.String getXLinkActuate(org.w3c.dom.Element elt)
Returns the value of the 'xlink:actuate' attribute of the given element.
-
setXLinkActuate
public static void setXLinkActuate(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:actuate' attribute of the given element.
-
getXLinkHref
public static java.lang.String getXLinkHref(org.w3c.dom.Element elt)
Returns the value of the 'xlink:href' attribute of the given element.
-
setXLinkHref
public static void setXLinkHref(org.w3c.dom.Element elt, java.lang.String str)
Sets the value of the 'xlink:href' attribute of the given element.
-
-