KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > mathml > MathMLCsymbolElementImpl


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

10 public class MathMLCsymbolElementImpl extends MathMLContentTokenImpl implements MathMLCsymbolElement {
11         /**
12          * Constructs a MathML content symbol element.
13          */

14         public MathMLCsymbolElementImpl(MathMLDocumentImpl owner, String JavaDoc qualifiedName) {
15                 super(owner, qualifiedName);
16         }
17 }
18
19
Popular Tags