KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > mathml > MathMLStringLitElementImpl


1 package JSci.mathml;
2
3 import org.w3c.dom.mathml.*;
4
5 /**
6  * Implements a MathML string literal element.
7  * @version 1.0
8  * @author Mark Hale
9  */

10 public class MathMLStringLitElementImpl extends MathMLPresentationTokenImpl implements MathMLStringLitElement {
11         /**
12          * Constructs a MathML string literal element.
13          */

14         public MathMLStringLitElementImpl(MathMLDocumentImpl owner, String JavaDoc qualifiedName) {
15                 super(owner, qualifiedName);
16         }
17
18         public String JavaDoc getLquote() {
19                 return getAttribute("lquote");
20         }
21         public void setLquote(String JavaDoc lquote) {
22                 setAttribute("lquote", lquote);
23         }
24
25         public String JavaDoc getRquote() {
26                 return getAttribute("rquote");
27         }
28         public void setRquote(String JavaDoc rquote) {
29                 setAttribute("rquote", rquote);
30         }
31 }
32
33
Popular Tags