1 package JSci.mathml; 2 3 import org.w3c.dom.mathml.*; 4 5 10 public class MathMLSpaceElementImpl extends MathMLElementImpl implements MathMLSpaceElement { 11 14 public MathMLSpaceElementImpl(MathMLDocumentImpl owner, String qualifiedName) { 15 super(owner, qualifiedName); 16 } 17 18 public String getWidth() { 19 return getAttribute("width"); 20 } 21 public void setWidth(String width) { 22 setAttribute("width", width); 23 } 24 25 public String getHeight() { 26 return getAttribute("height"); 27 } 28 public void setHeight(String height) { 29 setAttribute("height", height); 30 } 31 32 public String getDepth() { 33 return getAttribute("depth"); 34 } 35 public void setDepth(String depth) { 36 setAttribute("depth", depth); 37 } 38 } 39 40 | Popular Tags |