1 package JSci.mathml; 2 3 import org.w3c.dom.mathml.*; 4 5 10 public class MathMLPaddedElementImpl extends MathMLPresentationContainerImpl implements MathMLPaddedElement { 11 14 public MathMLPaddedElementImpl(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 getLspace() { 26 return getAttribute("lspace"); 27 } 28 public void setLspace(String lspace) { 29 setAttribute("lspace", lspace); 30 } 31 32 public String getHeight() { 33 return getAttribute("height"); 34 } 35 public void setHeight(String height) { 36 setAttribute("height", height); 37 } 38 39 public String getDepth() { 40 return getAttribute("depth"); 41 } 42 public void setDepth(String depth) { 43 setAttribute("depth", depth); 44 } 45 } 46 47 | Popular Tags |