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.SVGAnimatedString; 23 import org.w3c.dom.svg.SVGFETileElement; 24 25 31 public class SVGOMFETileElement 32 extends SVGOMFilterPrimitiveStandardAttributes 33 implements SVGFETileElement { 34 35 38 protected SVGOMFETileElement() { 39 } 40 41 46 public SVGOMFETileElement(String prefix, AbstractDocument owner) { 47 super(prefix, owner); 48 } 49 50 53 public String getLocalName() { 54 return SVG_FE_TILE_TAG; 55 } 56 57 60 public SVGAnimatedString getIn1() { 61 return getAnimatedStringAttribute(null, SVG_IN_ATTRIBUTE); 62 } 63 64 67 protected Node newNode() { 68 return new SVGOMFETileElement(); 69 } 70 } 71 | Popular Tags |