Class AbstractSVGNumberList

    • Field Detail

      • SVG_NUMBER_LIST_SEPARATOR

        public static final java.lang.String SVG_NUMBER_LIST_SEPARATOR
        Separator for a length list.
        See Also:
        Constant Field Values
    • Constructor Detail

      • AbstractSVGNumberList

        protected AbstractSVGNumberList()
        Creates a new SVGNumberList.
    • Method Detail

      • getItemSeparator

        protected java.lang.String getItemSeparator()
        Return the separator between values in the list.
        Specified by:
        getItemSeparator in class AbstractSVGList
      • createSVGException

        protected abstract org.w3c.dom.svg.SVGException createSVGException​(short type,
                                                                           java.lang.String key,
                                                                           java.lang.Object[] args)
        Create an SVGException when the checkItemType(Object) fails.
      • getElement

        protected abstract org.w3c.dom.Element getElement()
        Returns the element associated with this SVGNumberList.
      • initialize

        public org.w3c.dom.svg.SVGNumber initialize​(org.w3c.dom.svg.SVGNumber newItem)
                                             throws org.w3c.dom.DOMException,
                                                    org.w3c.dom.svg.SVGException
        DOM: Implements SVGNumberList.initialize(SVGNumber).
        Specified by:
        initialize in interface org.w3c.dom.svg.SVGNumberList
        Throws:
        org.w3c.dom.DOMException
        org.w3c.dom.svg.SVGException
      • getItem

        public org.w3c.dom.svg.SVGNumber getItem​(int index)
                                          throws org.w3c.dom.DOMException
        DOM: Implements SVGNumberList.getItem(int).
        Specified by:
        getItem in interface org.w3c.dom.svg.SVGNumberList
        Throws:
        org.w3c.dom.DOMException
      • insertItemBefore

        public org.w3c.dom.svg.SVGNumber insertItemBefore​(org.w3c.dom.svg.SVGNumber newItem,
                                                          int index)
                                                   throws org.w3c.dom.DOMException,
                                                          org.w3c.dom.svg.SVGException
        DOM: Implements SVGNumberList.insertItemBefore(SVGNumber,int).
        Specified by:
        insertItemBefore in interface org.w3c.dom.svg.SVGNumberList
        Throws:
        org.w3c.dom.DOMException
        org.w3c.dom.svg.SVGException
      • replaceItem

        public org.w3c.dom.svg.SVGNumber replaceItem​(org.w3c.dom.svg.SVGNumber newItem,
                                                     int index)
                                              throws org.w3c.dom.DOMException,
                                                     org.w3c.dom.svg.SVGException
        DOM: Implements SVGNumberList.replaceItem(SVGNumber,int).
        Specified by:
        replaceItem in interface org.w3c.dom.svg.SVGNumberList
        Throws:
        org.w3c.dom.DOMException
        org.w3c.dom.svg.SVGException
      • removeItem

        public org.w3c.dom.svg.SVGNumber removeItem​(int index)
                                             throws org.w3c.dom.DOMException
        DOM: Implements SVGNumberList.removeItem(int).
        Specified by:
        removeItem in interface org.w3c.dom.svg.SVGNumberList
        Throws:
        org.w3c.dom.DOMException
      • appendItem

        public org.w3c.dom.svg.SVGNumber appendItem​(org.w3c.dom.svg.SVGNumber newItem)
                                             throws org.w3c.dom.DOMException,
                                                    org.w3c.dom.svg.SVGException
        DOM: Implements SVGNumberList.appendItem(SVGNumber).
        Specified by:
        appendItem in interface org.w3c.dom.svg.SVGNumberList
        Throws:
        org.w3c.dom.DOMException
        org.w3c.dom.svg.SVGException
      • checkItemType

        protected void checkItemType​(java.lang.Object newItem)
                              throws org.w3c.dom.svg.SVGException
        Asserts that the given item object is an SVGNumber.
        Specified by:
        checkItemType in class AbstractSVGList
        Throws:
        org.w3c.dom.svg.SVGException