KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > mathml > MathMLAlignGroupElementImpl


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

10 public class MathMLAlignGroupElementImpl extends MathMLElementImpl implements MathMLAlignGroupElement {
11         /**
12          * Constructs a MathML align group element.
13          */

14         public MathMLAlignGroupElementImpl(MathMLDocumentImpl owner, String JavaDoc qualifiedName) {
15                 super(owner, qualifiedName);
16         }
17
18         public String JavaDoc getGroupalign() {
19                 return getAttribute("groupalign");
20         }
21         public void setGroupalign(String JavaDoc groupalign) {
22                 setAttribute("groupalign", groupalign);
23         }
24 }
25
26
Popular Tags