1 package JSci.mathml; 2 3 import org.w3c.dom.mathml.*; 4 5 10 public class MathMLStringLitElementImpl extends MathMLPresentationTokenImpl implements MathMLStringLitElement { 11 14 public MathMLStringLitElementImpl(MathMLDocumentImpl owner, String qualifiedName) { 15 super(owner, qualifiedName); 16 } 17 18 public String getLquote() { 19 return getAttribute("lquote"); 20 } 21 public void setLquote(String lquote) { 22 setAttribute("lquote", lquote); 23 } 24 25 public String getRquote() { 26 return getAttribute("rquote"); 27 } 28 public void setRquote(String rquote) { 29 setAttribute("rquote", rquote); 30 } 31 } 32 33 | Popular Tags |