1 17 18 19 20 package org.apache.fop.mathml; 21 22 import org.apache.fop.fo.FONode; 24 import org.apache.fop.fo.XMLObj; 25 26 29 public class MathMLObj extends XMLObj { 30 31 34 public MathMLObj(FONode parent) { 35 super(parent); 36 } 37 38 39 public String getNamespaceURI() { 40 return MathMLElementMapping.NAMESPACE; 41 } 42 43 44 public String getNormalNamespacePrefix() { 45 return "mathml"; 46 } 47 } 48 49 | Popular Tags |