1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.w3c.dom.Node ; 22 import org.w3c.dom.svg.SVGAnimatedNumber; 23 import org.w3c.dom.svg.SVGAnimatedString; 24 import org.w3c.dom.svg.SVGFEOffsetElement; 25 26 32 public class SVGOMFEOffsetElement 33 extends SVGOMFilterPrimitiveStandardAttributes 34 implements SVGFEOffsetElement { 35 36 39 protected SVGOMFEOffsetElement() { 40 } 41 42 47 public SVGOMFEOffsetElement(String prefix, AbstractDocument owner) { 48 super(prefix, owner); 49 } 50 51 54 public String getLocalName() { 55 return SVG_FE_OFFSET_TAG; 56 } 57 58 62 public SVGAnimatedString getIn1() { 63 return getAnimatedStringAttribute(null, SVG_IN_ATTRIBUTE); 64 } 65 66 70 public SVGAnimatedNumber getDx() { 71 return getAnimatedNumberAttribute(null, SVG_DX_ATTRIBUTE, 0f); 72 } 73 74 78 public SVGAnimatedNumber getDy() { 79 return getAnimatedNumberAttribute(null, SVG_DY_ATTRIBUTE, 0f); 80 } 81 82 85 protected Node newNode() { 86 return new SVGOMFEOffsetElement(); 87 } 88 } 89 | Popular Tags |