Package edu.harvard.hul.ois.ots.schemas.TextMD

Examples of edu.harvard.hul.ois.ots.schemas.TextMD.MarkupLanguage


        ml = null;
    }
   
    protected void attachMarkupLanguage () {
        if (ml == null) {
            ml = new MarkupLanguage ();
            textMD.addMarkupLanguage(ml);
        }
    }
View Full Code Here


        assertEquals ("HTML", mkbas.getValue());
        assertEquals ("1.0", mkbas.getVersion());
       
        List<MarkupLanguage> mklangs = tmd.getMarkupLanguages();
        assertTrue (mklangs.size() == 1);
        MarkupLanguage mklang = mklangs.get(0);
        assertEquals (mln, mklang.getValue());
    }
View Full Code Here

TOP

Related Classes of edu.harvard.hul.ois.ots.schemas.TextMD.MarkupLanguage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.