1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.w3c.dom.Node ; 22 23 31 public class SVGOMToBeImplementedElement 32 extends SVGGraphicsElement { 33 34 37 protected String localName; 38 39 42 protected SVGOMToBeImplementedElement() { 43 } 44 45 51 public SVGOMToBeImplementedElement(String prefix, AbstractDocument owner, 52 String localName) { 53 super(prefix, owner); 54 this.localName = localName; 55 } 56 57 60 public String getLocalName() { 61 return localName; 62 } 63 64 67 protected Node newNode() { 68 return new SVGOMToBeImplementedElement(); 69 } 70 71 74 protected Node export(Node n, AbstractDocument d) { 75 super.export(n, d); 76 SVGOMToBeImplementedElement ae = (SVGOMToBeImplementedElement)n; 77 ae.localName = localName; 78 return n; 79 } 80 81 84 protected Node deepExport(Node n, AbstractDocument d) { 85 super.deepExport(n, d); 86 SVGOMToBeImplementedElement ae = (SVGOMToBeImplementedElement)n; 87 ae.localName = localName; 88 return n; 89 } 90 91 95 protected Node copyInto(Node n) { 96 super.copyInto(n); 97 SVGOMToBeImplementedElement ae = (SVGOMToBeImplementedElement)n; 98 ae.localName = localName; 99 return n; 100 } 101 102 106 protected Node deepCopyInto(Node n) { 107 super.deepCopyInto(n); 108 SVGOMToBeImplementedElement ae = (SVGOMToBeImplementedElement)n; 109 ae.localName = localName; 110 return n; 111 } 112 113 } 114 | Popular Tags |