P Java 言語束縛
目次
この付録は規定である。
This appendix is normative.
この言語束縛における定数はすべて public static final
である。すべてのフィールドとメソッドは public
である。
Constants in this binding are always public static final. All fields and methods are public.
P.1 Package org.w3c.dom
- org.w3c.dom.DOMException のクラス定数
-
org.w3c.dom.DOMException
クラスは以下の定数を持つ:
- INDEX_SIZE_ERR
-
この定数は
short
で値は 1。
This constant is a short and its value is 1.
- DOMSTRING_SIZE_ERR
-
この定数は
short
で値は 2。
This constant is a short and its value is 2.
- HIERARCHY_REQUEST_ERR
-
この定数は
short
で値は 3。
This constant is a short and its value is 3.
- WRONG_DOCUMENT_ERR
-
この定数は
short
で値は 4。
This constant is a short and its value is 4.
- INVALID_CHARACTER_ERR
-
この定数は
short
で値は 5。
This constant is a short and its value is 5.
- NO_DATA_ALLOWED_ERR
-
この定数は
short
で値は 6。
This constant is a short and its value is 6.
- NO_MODIFICATION_ALLOWED_ERR
-
この定数は
short
で値は 7。
This constant is a short and its value is 7.
- NOT_FOUND_ERR
-
この定数は
short
で値は 8。
This constant is a short and its value is 8.
- NOT_SUPPORTED_ERR
-
この定数は
short
で値は 9。
This constant is a short and its value is 9.
- INUSE_ATTRIBUTE_ERR
-
この定数は
short
で値は 10。
This constant is a short and its value is 10.
- INVALID_STATE_ERR
-
この定数は
short
で値は 11。
This constant is a short and its value is 11.
- SYNTAX_ERR
-
この定数は
short
で値は 12。
This constant is a short and its value is 12.
- INVALID_MODIFICATION_ERR
-
この定数は
short
で値は 13。
This constant is a short and its value is 13.
- NAMESPACE_ERR
-
この定数は
short
で値は 14。
This constant is a short and its value is 14.
- INVALID_ACCESS_ERR
-
この定数は
short
で値は 15。
This constant is a short and its value is 15.
- VALIDATION_ERR
-
この定数は
short
で値は 16。
This constant is a short and its value is 16.
- TYPE_MISMATCH_ERR
-
この定数は
short
で値は 17。
This constant is a short and its value is 17.
- Class org.w3c.dom.DOMException
org.w3c.dom.DOMException extends java.lang.RuntimeException.
org.w3c.dom.DOMException extends java.lang.RuntimeException.
-
org.w3c.dom.DOMException
クラスは以下のメソッドを持つ:
- getCode()
-
このメソッドは short を返す。
This method returns a short.
-
setCode(short code)
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.Node
-
org.w3c.dom.Node
インターフェースは以下のメソッドを持つ:
- getNamespaceURI()
-
このメソッドは String を返す。
This method returns a String.
- getLocalName()
-
このメソッドは String を返す。
This method returns a String.
- getParentNode()
-
このメソッドは Node を返す。
This method returns a Node.
- getOwnerDocument()
-
このメソッドは Document を返す。
This method returns a Document.
- getTextContent()
-
このメソッドは String を返す。
This method returns a String.
-
setTextContent(String textContent)
-
このメソッドに返り値は無い。
This method has no return value.
- appendChild(Node newChild)
-
このメソッドは Node を返す。
This method returns a Node.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- insertBefore(Node newChild, Node refChild)
-
このメソッドは Node を返す。
This method returns a Node.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- removeChild(Node oldChild)
-
このメソッドは Node を返す。
This method returns a Node.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- cloneNode(boolean deep)
-
このメソッドは Node を返す。
This method returns a Node.
- Interface org.w3c.dom.Element
org.w3c.dom.Element extends Node, ElementTraversal.
org.w3c.dom.Element extends Node, ElementTraversal.
-
org.w3c.dom.Element
インターフェースは以下のメソッドを持つ:
- getAttributeNS(String namespaceURI, String localName)
-
このメソッドは String を返す。
This method returns a String.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setAttributeNS(String namespaceURI, String qualifiedName, String value)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getAttribute(String name)
-
このメソッドは String を返す。
This method returns a String.
- setAttribute(String name, String value)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- Interface org.w3c.dom.Document
org.w3c.dom.Document extends Node.
org.w3c.dom.Document extends Node.
-
org.w3c.dom.Document
インターフェースは以下のメソッドを持つ:
- createElementNS(String namespaceURI, String qualifiedName)
-
このメソッドは Element を返す。
This method returns a Element.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getDocumentElement()
-
このメソッドは Element を返す。
This method returns a Element.
- getElementById(String elementId)
-
このメソッドは Element を返す。
This method returns a Element.
- Interface org.w3c.dom.ElementTraversal
-
org.w3c.dom.ElementTraversal
インターフェースは以下のメソッドを持つ:
- getFirstElementChild()
-
このメソッドは Element を返す。
This method returns a Element.
- getLastElementChild()
-
このメソッドは Element を返す。
This method returns a Element.
- getNextElementSibling()
-
このメソッドは Element を返す。
This method returns a Element.
- getPreviousElementSibling()
-
このメソッドは Element を返す。
This method returns a Element.
- getChildElementCount()
-
このメソッドは long を返す。
This method returns a long.
- Interface org.w3c.dom.Location
-
org.w3c.dom.Location
インターフェースは以下のメソッドを持つ:
- assign(String iri)
-
このメソッドに返り値は無い。
This method has no return value.
- reload()
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.Window
-
org.w3c.dom.Window
インターフェースは以下のメソッドを持つ:
- getParent()
-
このメソッドは Window を返す。
This method returns a Window.
- getLocation()
-
このメソッドは Location を返す。
This method returns a Location.
P.2 Package org.w3c.dom.views
- Interface org.w3c.dom.views.AbstractView
-
org.w3c.dom.views.AbstractView
インターフェースは以下のメソッドを持つ:
- getDocument()
-
このメソッドは DocumentView を返す。
This method returns a DocumentView.
- Interface org.w3c.dom.views.DocumentView
-
org.w3c.dom.views.DocumentView
インターフェースは以下のメソッドを持つ:
- getDefaultView()
-
このメソッドは AbstractView を返す。
This method returns a AbstractView.
P.3 Package org.w3c.dom.events
- Interface org.w3c.dom.events.EventTarget
-
org.w3c.dom.events.EventTarget
インターフェースは以下のメソッドを持つ:
- addEventListener(String type, EventListener listener, boolean useCapture)
-
このメソッドに返り値は無い。
This method has no return value.
- removeEventListener(String type, EventListener listener, boolean useCapture)
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.events.EventListener
-
org.w3c.dom.events.EventListener
インターフェースは以下のメソッドを持つ:
- handleEvent(Event evt)
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.events.Event
-
org.w3c.dom.events.Event
インターフェースは以下のメソッドを持つ:
- getTarget()
-
このメソッドは EventTarget を返す。
This method returns a EventTarget.
- getCurrentTarget()
-
このメソッドは EventTarget を返す。
This method returns a EventTarget.
- getType()
-
このメソッドは String を返す。
This method returns a String.
- getCancelable()
-
このメソッドは boolean を返す。
This method returns a boolean.
- getDefaultPrevented()
-
このメソッドは boolean を返す。
This method returns a boolean.
- stopPropagation()
-
このメソッドに返り値は無い。
This method has no return value.
- preventDefault()
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.events.MouseEvent
org.w3c.dom.events.MouseEvent extends UIEvent.
org.w3c.dom.events.MouseEvent extends UIEvent.
-
org.w3c.dom.events.MouseEvent
インターフェースは以下のメソッドを持つ:
- getScreenX()
-
このメソッドは long を返す。
This method returns a long.
- getScreenY()
-
このメソッドは long を返す。
This method returns a long.
- getClientX()
-
このメソッドは long を返す。
This method returns a long.
- getClientY()
-
このメソッドは long を返す。
This method returns a long.
- getButton()
-
このメソッドは short を返す。
This method returns a short.
- Interface org.w3c.dom.events.MouseWheelEvent
org.w3c.dom.events.MouseWheelEvent extends MouseEvent.
org.w3c.dom.events.MouseWheelEvent extends MouseEvent.
-
org.w3c.dom.events.MouseWheelEvent
インターフェースは以下のメソッドを持つ:
- getWheelDelta()
-
このメソッドは long を返す。
This method returns a long.
- Interface org.w3c.dom.events.TextEvent
org.w3c.dom.events.TextEvent extends UIEvent.
org.w3c.dom.events.TextEvent extends UIEvent.
-
org.w3c.dom.events.TextEvent
インターフェースは以下のメソッドを持つ:
- getData()
-
このメソッドは String を返す。
This method returns a String.
- Interface org.w3c.dom.events.KeyboardEvent
org.w3c.dom.events.KeyboardEvent extends UIEvent.
org.w3c.dom.events.KeyboardEvent extends UIEvent.
-
org.w3c.dom.events.KeyboardEvent
インターフェースは以下のメソッドを持つ:
- getKeyIdentifier()
-
このメソッドは String を返す。
This method returns a String.
- Interface org.w3c.dom.events.UIEvent
org.w3c.dom.events.UIEvent extends Event.
org.w3c.dom.events.UIEvent extends Event.
-
org.w3c.dom.events.UIEvent
インターフェースは以下のメソッドを持つ:
- getDetail()
-
このメソッドは long を返す。
This method returns a long.
- Interface org.w3c.dom.events.ProgressEvent
org.w3c.dom.events.ProgressEvent extends Event.
org.w3c.dom.events.ProgressEvent extends Event.
-
org.w3c.dom.events.ProgressEvent
インターフェースは以下のメソッドを持つ:
- getLengthComputable()
-
このメソッドは boolean を返す。
This method returns a boolean.
- getLoaded()
-
このメソッドは long を返す。
This method returns a long.
- getTotal()
-
このメソッドは long を返す。
This method returns a long.
P.4 Package org.w3c.dom.smil
- Interface org.w3c.dom.smil.ElementTimeControl
-
org.w3c.dom.smil.ElementTimeControl
インターフェースは以下のメソッドを持つ:
- beginElementAt(float offset)
-
このメソッドに返り値は無い。
This method has no return value.
- beginElement()
-
このメソッドに返り値は無い。
This method has no return value.
- endElementAt(float offset)
-
このメソッドに返り値は無い。
This method has no return value.
- endElement()
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.smil.TimeEvent
org.w3c.dom.smil.TimeEvent extends Event.
org.w3c.dom.smil.TimeEvent extends Event.
-
org.w3c.dom.smil.TimeEvent
インターフェースは以下のメソッドを持つ:
- getDetail()
-
このメソッドは long を返す。
This method returns a long.
P.5 Package org.w3c.dom.svg
- Class constants for org.w3c.dom.svg.SVGException
-
org.w3c.dom.svg.SVGException
class holds the following constants:
- SVG_WRONG_TYPE_ERR
-
この定数は
short
で値は 0。
This constant is a short and its value is 0.
- SVG_INVALID_VALUE_ERR
-
この定数は
short
で値は 1。
This constant is a short and its value is 1.
- SVG_MATRIX_NOT_INVERTABLE
-
この定数は
short
で値は 2。
This constant is a short and its value is 2.
- Class org.w3c.dom.svg.SVGException
org.w3c.dom.svg.SVGException extends java.lang.RuntimeException.
org.w3c.dom.svg.SVGException extends java.lang.RuntimeException.
-
org.w3c.dom.svg.SVGException
クラスは以下のメソッドを持つ:
- getCode()
-
このメソッドは short を返す。
This method returns a short.
-
setCode(short code)
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.svg.SVGDocument
org.w3c.dom.svg.SVGDocument extends Document, EventTarget.
org.w3c.dom.svg.SVGDocument extends Document, EventTarget.
- Interface org.w3c.dom.svg.SVGUseElement
org.w3c.dom.svg.SVGUseElement extends SVGLocatableElement.
org.w3c.dom.svg.SVGUseElement extends SVGLocatableElement.
- Interface org.w3c.dom.svg.SVGElementInstance
org.w3c.dom.svg.SVGElementInstance extends EventTarget.
org.w3c.dom.svg.SVGElementInstance extends EventTarget.
-
org.w3c.dom.svg.SVGElementInstance
インターフェースは以下のメソッドを持つ:
- getCorrespondingElement()
-
このメソッドは SVGElement を返す。
This method returns a SVGElement.
- getCorrespondingUseElement()
-
このメソッドは SVGUseElement を返す。
This method returns a SVGUseElement.
- Interface constants org.w3c.dom.svg.SVGSVGElement
-
org.w3c.dom.svg.SVGSVGElement
インターフェースは以下の定数を持つ:
- NAV_AUTO
-
この定数は
short
で値は 1。
This constant is a short and its value is 1.
- NAV_NEXT
-
この定数は
short
で値は 2。
This constant is a short and its value is 2.
- NAV_PREV
-
この定数は
short
で値は 3。
This constant is a short and its value is 3.
- NAV_UP
-
この定数は
short
で値は 4。
This constant is a short and its value is 4.
- NAV_UP_RIGHT
-
この定数は
short
で値は 5。
This constant is a short and its value is 5.
- NAV_RIGHT
-
この定数は
short
で値は 6。
This constant is a short and its value is 6.
- NAV_DOWN_RIGHT
-
この定数は
short
で値は 7。
This constant is a short and its value is 7.
- NAV_DOWN
-
この定数は
short
で値は 8。
This constant is a short and its value is 8.
- NAV_DOWN_LEFT
-
この定数は
short
で値は 9。
This constant is a short and its value is 9.
- NAV_LEFT
-
この定数は
short
で値は 10。
This constant is a short and its value is 10.
- NAV_UP_LEFT
-
この定数は
short
で値は 11。
This constant is a short and its value is 11.
- Interface org.w3c.dom.svg.SVGSVGElement
org.w3c.dom.svg.SVGSVGElement extends SVGLocatableElement, SVGTimedElement.
org.w3c.dom.svg.SVGSVGElement extends SVGLocatableElement, SVGTimedElement.
-
org.w3c.dom.svg.SVGSVGElement
インターフェースは以下のメソッドを持つ:
- getCurrentScale()
-
このメソッドは float を返す。
This method returns a float.
-
setCurrentScale(float currentScale)
-
このメソッドに返り値は無い。
This method has no return value.
- getCurrentRotate()
-
このメソッドは float を返す。
This method returns a float.
-
setCurrentRotate(float currentRotate)
-
このメソッドに返り値は無い。
This method has no return value.
- getCurrentTranslate()
-
このメソッドは SVGPoint を返す。
This method returns a SVGPoint.
- getViewport()
-
このメソッドは SVGRect を返す。
This method returns a SVGRect.
- getCurrentTime()
-
このメソッドは float を返す。
This method returns a float.
- setCurrentTime(float seconds)
-
このメソッドに返り値は無い。
This method has no return value.
- createSVGMatrixComponents(float a, float b, float c, float d, float e, float f)
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
- createSVGRect()
-
このメソッドは SVGRect を返す。
This method returns a SVGRect.
- createSVGPoint()
-
このメソッドは SVGPoint を返す。
This method returns a SVGPoint.
- createSVGPath()
-
このメソッドは SVGPath を返す。
This method returns a SVGPath.
- createSVGRGBColor(float red, float green, float blue)
-
このメソッドは SVGRGBColor を返す。
This method returns a SVGRGBColor.
-
このメソッドは SVGException を投げる。
This method throws SVGException exceptions.
- moveFocus(short motionType)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setFocus(EventTarget theObject)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getCurrentFocusedObject()
-
このメソッドは EventTarget を返す。
This method returns a EventTarget.
- Interface org.w3c.dom.svg.SVGRGBColor
-
org.w3c.dom.svg.SVGRGBColor
インターフェースは以下のメソッドを持つ:
- getRed()
-
このメソッドは long を返す。
This method returns a long.
-
setRed(long red)
-
このメソッドに返り値は無い。
This method has no return value.
- getGreen()
-
このメソッドは long を返す。
This method returns a long.
-
setGreen(long green)
-
このメソッドに返り値は無い。
This method has no return value.
- getBlue()
-
このメソッドは long を返す。
This method returns a long.
-
setBlue(long blue)
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.svg.SVGRect
-
org.w3c.dom.svg.SVGRect
インターフェースは以下のメソッドを持つ:
- getX()
-
このメソッドは float を返す。
This method returns a float.
-
setX(float x)
-
このメソッドに返り値は無い。
This method has no return value.
- getY()
-
このメソッドは float を返す。
This method returns a float.
-
setY(float y)
-
このメソッドに返り値は無い。
This method has no return value.
- getWidth()
-
このメソッドは float を返す。
This method returns a float.
-
setWidth(float width)
-
このメソッドに返り値は無い。
This method has no return value.
- getHeight()
-
このメソッドは float を返す。
This method returns a float.
-
setHeight(float height)
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.svg.SVGPoint
-
org.w3c.dom.svg.SVGPoint
インターフェースは以下のメソッドを持つ:
- getX()
-
このメソッドは float を返す。
This method returns a float.
-
setX(float x)
-
このメソッドに返り値は無い。
This method has no return value.
- getY()
-
このメソッドは float を返す。
This method returns a float.
-
setY(float y)
-
このメソッドに返り値は無い。
This method has no return value.
- matrixTransform(SVGMatrix matrix)
-
このメソッドは SVGPoint を返す。
This method returns a SVGPoint.
- Interface constants org.w3c.dom.svg.SVGPath
-
org.w3c.dom.svg.SVGPath
インターフェースは以下の定数を持つ:
- MOVE_TO
-
この定数は
short
で値は 77。
This constant is a short and its value is 77.
- LINE_TO
-
この定数は
short
で値は 76。
This constant is a short and its value is 76.
- CURVE_TO
-
この定数は
short
で値は 67。
This constant is a short and its value is 67.
- QUAD_TO
-
この定数は
short
で値は 81。
This constant is a short and its value is 81.
- CLOSE
-
この定数は
short
で値は 90。
This constant is a short and its value is 90.
- Interface org.w3c.dom.svg.SVGPath
-
org.w3c.dom.svg.SVGPath
インターフェースは以下のメソッドを持つ:
- getNumberOfSegments()
-
このメソッドは long を返す。
This method returns a long.
- getSegment(long cmdIndex)
-
このメソッドは short を返す。
This method returns a short.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getSegmentParam(long cmdIndex, long paramIndex)
-
このメソッドは float を返す。
This method returns a float.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- moveTo(float x, float y)
-
このメソッドに返り値は無い。
This method has no return value.
- lineTo(float x, float y)
-
このメソッドに返り値は無い。
This method has no return value.
- quadTo(float x1, float y1, float x2, float y2)
-
このメソッドに返り値は無い。
This method has no return value.
- curveTo(float x1, float y1, float x2, float y2, float x3, float y3)
-
このメソッドに返り値は無い。
This method has no return value.
- close()
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.svg.SVGMatrix
-
org.w3c.dom.svg.SVGMatrix
インターフェースは以下のメソッドを持つ:
- getComponent(long index)
-
このメソッドは float を返す。
This method returns a float.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- mMultiply(SVGMatrix secondMatrix)
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
- inverse()
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
-
このメソッドは SVGException を投げる。
This method throws SVGException exceptions.
- mTranslate(float x, float y)
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
- mScale(float scaleFactor)
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
- mRotate(float angle)
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
- Interface org.w3c.dom.svg.SVGLocatable
-
org.w3c.dom.svg.SVGLocatable
インターフェースは以下のメソッドを持つ:
- getBBox()
-
このメソッドは SVGRect を返す。
This method returns a SVGRect.
- getScreenCTM()
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
- getScreenBBox()
-
このメソッドは SVGRect を返す。
This method returns a SVGRect.
- Interface org.w3c.dom.svg.SVGLocatableElement
org.w3c.dom.svg.SVGLocatableElement extends SVGElement, SVGLocatable.
org.w3c.dom.svg.SVGLocatableElement extends SVGElement, SVGLocatable.
- Interface org.w3c.dom.svg.TraitAccess
-
org.w3c.dom.svg.TraitAccess
インターフェースは以下のメソッドを持つ:
- getTrait(String name)
-
このメソッドは String を返す。
This method returns a String.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getTraitNS(String namespaceURI, String name)
-
このメソッドは String を返す。
This method returns a String.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getFloatTrait(String name)
-
このメソッドは float を返す。
This method returns a float.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getFloatListTrait(String name)
-
このメソッドは float[] を返す。
This method returns a float[].
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getMatrixTrait(String name)
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getRectTrait(String name)
-
このメソッドは SVGRect を返す。
This method returns a SVGRect.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getPathTrait(String name)
-
このメソッドは SVGPath を返す。
This method returns a SVGPath.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getRGBColorTrait(String name)
-
このメソッドは SVGRGBColor を返す。
This method returns a SVGRGBColor.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getPresentationTrait(String name)
-
このメソッドは String を返す。
This method returns a String.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getPresentationTraitNS(String namespaceURI, String name)
-
このメソッドは String を返す。
This method returns a String.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getFloatPresentationTrait(String name)
-
このメソッドは float を返す。
This method returns a float.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getFloatListPresentationTrait(String name)
-
このメソッドは float[] を返す。
This method returns a float[].
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getMatrixPresentationTrait(String name)
-
このメソッドは SVGMatrix を返す。
This method returns a SVGMatrix.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getRectPresentationTrait(String name)
-
このメソッドは SVGRect を返す。
This method returns a SVGRect.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getPathPresentationTrait(String name)
-
このメソッドは SVGPath を返す。
This method returns a SVGPath.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- getRGBColorPresentationTrait(String name)
-
このメソッドは SVGRGBColor を返す。
This method returns a SVGRGBColor.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setTrait(String name, String value)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setTraitNS(String namespaceURI, String name, String value)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setFloatTrait(String name, float value)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setFloatListTrait(String name, float[] value)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setMatrixTrait(String name, SVGMatrix matrix)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setRectTrait(String name, SVGRect rect)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setPathTrait(String name, SVGPath path)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- setRGBColorTrait(String name, SVGRGBColor color)
-
このメソッドに返り値は無い。
This method has no return value.
-
このメソッドは DOMException を投げる。
This method throws DOMException exceptions.
- Interface org.w3c.dom.svg.SVGElement
org.w3c.dom.svg.SVGElement extends Element, EventTarget, TraitAccess.
org.w3c.dom.svg.SVGElement extends Element, EventTarget, TraitAccess.
-
org.w3c.dom.svg.SVGElement
インターフェースは以下のメソッドを持つ:
- getId()
-
このメソッドは String を返す。
This method returns a String.
-
setId(String id)
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.svg.SVGTimedElement
org.w3c.dom.svg.SVGTimedElement extends SVGElement, smil::ElementTimeControl.
org.w3c.dom.svg.SVGTimedElement extends SVGElement, smil::ElementTimeControl.
-
org.w3c.dom.svg.SVGTimedElement
インターフェースは以下のメソッドを持つ:
- pauseElement()
-
このメソッドに返り値は無い。
This method has no return value.
- resumeElement()
-
このメソッドに返り値は無い。
This method has no return value.
- getIsPaused()
-
このメソッドは boolean を返す。
This method returns a boolean.
- Interface org.w3c.dom.svg.SVGAnimationElement
org.w3c.dom.svg.SVGAnimationElement extends SVGTimedElement.
org.w3c.dom.svg.SVGAnimationElement extends SVGTimedElement.
- Interface org.w3c.dom.svg.SVGVisualMediaElement
org.w3c.dom.svg.SVGVisualMediaElement extends SVGLocatableElement, SVGTimedElement.
org.w3c.dom.svg.SVGVisualMediaElement extends SVGLocatableElement, SVGTimedElement.
- Interface org.w3c.dom.svg.SVGTimer
org.w3c.dom.svg.SVGTimer extends events::EventTarget.
org.w3c.dom.svg.SVGTimer extends events::EventTarget.
-
org.w3c.dom.svg.SVGTimer
インターフェースは以下のメソッドを持つ:
- getDelay()
-
このメソッドは long を返す。
This method returns a long.
-
setDelay(long delay)
-
このメソッドに返り値は無い。
This method has no return value.
- getRepeatInterval()
-
このメソッドは long を返す。
This method returns a long.
-
setRepeatInterval(long repeatInterval)
-
このメソッドに返り値は無い。
This method has no return value.
- getRunning()
-
このメソッドは boolean を返す。
This method returns a boolean.
- start()
-
このメソッドに返り値は無い。
This method has no return value.
- stop()
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.svg.SVGGlobal
-
org.w3c.dom.svg.SVGGlobal
インターフェースは以下のメソッドを持つ:
- createTimer(long initialInterval, long repeatInterval)
-
このメソッドは SVGTimer を返す。
This method returns a SVGTimer.
- getURL(String iri, AsyncStatusCallback callback)
-
このメソッドに返り値は無い。
This method has no return value.
- postURL(String iri, String data, AsyncStatusCallback callback, String type, String encoding)
-
このメソッドに返り値は無い。
This method has no return value.
- parseXML(String data, Document contextDoc)
-
このメソッドは Node を返す。
This method returns a Node.
- Interface org.w3c.dom.svg.AsyncStatusCallback
-
org.w3c.dom.svg.AsyncStatusCallback
インターフェースは以下のメソッドを持つ:
- operationComplete(AsyncURLStatus status)
-
このメソッドに返り値は無い。
This method has no return value.
- Interface org.w3c.dom.svg.AsyncURLStatus
-
org.w3c.dom.svg.AsyncURLStatus
インターフェースは以下のメソッドを持つ:
- getSuccess()
-
このメソッドは boolean を返す。
This method returns a boolean.
- getContentType()
-
このメソッドは String を返す。
This method returns a String.
- getContent()
-
このメソッドは String を返す。
This method returns a String.
- Interface org.w3c.dom.svg.EventListenerInitializer2
-
org.w3c.dom.svg.EventListenerInitializer2
インターフェースは以下のメソッドを持つ:
- initializeEventListeners(Element scriptElement)
-
このメソッドに返り値は無い。
This method has no return value.
- createEventListener(Element handlerElement)
-
このメソッドは EventListener を返す。
This method returns a EventListener.