Package org.apache.batik.dom.svg
Class SVGOMRect
- java.lang.Object
-
- org.apache.batik.dom.svg.SVGOMRect
-
- All Implemented Interfaces:
org.w3c.dom.svg.SVGRect
- Direct Known Subclasses:
SVGOMAnimatedRect.AnimSVGRect
,SVGOMAnimatedRect.BaseSVGRect
public class SVGOMRect extends java.lang.Object implements org.w3c.dom.svg.SVGRect
An implementation ofSVGRect
that is not associated with an attribute.- Version:
- $Id: SVGOMRect.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description float
getHeight()
DOM: ImplementsSVGRect.getHeight()
.float
getWidth()
DOM: ImplementsSVGRect.getWidth()
.float
getX()
DOM: ImplementsSVGRect.getX()
.float
getY()
DOM: ImplementsSVGRect.getY()
.void
setHeight(float height)
DOM: ImplementsSVGRect.setHeight(float)
.void
setWidth(float width)
DOM: ImplementsSVGRect.setWidth(float)
.void
setX(float x)
DOM: ImplementsSVGRect.setX(float)
.void
setY(float y)
DOM: ImplementsSVGRect.setY(float)
.
-
-
-
Method Detail
-
getX
public float getX()
DOM: ImplementsSVGRect.getX()
.- Specified by:
getX
in interfaceorg.w3c.dom.svg.SVGRect
-
setX
public void setX(float x) throws org.w3c.dom.DOMException
DOM: ImplementsSVGRect.setX(float)
.- Specified by:
setX
in interfaceorg.w3c.dom.svg.SVGRect
- Throws:
org.w3c.dom.DOMException
-
getY
public float getY()
DOM: ImplementsSVGRect.getY()
.- Specified by:
getY
in interfaceorg.w3c.dom.svg.SVGRect
-
setY
public void setY(float y) throws org.w3c.dom.DOMException
DOM: ImplementsSVGRect.setY(float)
.- Specified by:
setY
in interfaceorg.w3c.dom.svg.SVGRect
- Throws:
org.w3c.dom.DOMException
-
getWidth
public float getWidth()
DOM: ImplementsSVGRect.getWidth()
.- Specified by:
getWidth
in interfaceorg.w3c.dom.svg.SVGRect
-
setWidth
public void setWidth(float width) throws org.w3c.dom.DOMException
DOM: ImplementsSVGRect.setWidth(float)
.- Specified by:
setWidth
in interfaceorg.w3c.dom.svg.SVGRect
- Throws:
org.w3c.dom.DOMException
-
getHeight
public float getHeight()
DOM: ImplementsSVGRect.getHeight()
.- Specified by:
getHeight
in interfaceorg.w3c.dom.svg.SVGRect
-
setHeight
public void setHeight(float height) throws org.w3c.dom.DOMException
DOM: ImplementsSVGRect.setHeight(float)
.- Specified by:
setHeight
in interfaceorg.w3c.dom.svg.SVGRect
- Throws:
org.w3c.dom.DOMException
-
-