Package org.apache.ctakes.jdl.data.xml

Examples of org.apache.ctakes.jdl.data.xml.DomParser


  public static String L2X = Resources.LOAD2X;

  @Theory
  public void getRoot(String xml) {
    xml = FileUtil.getFile(xml).toString();
    DomParser dom;
    dom = new DomParser(CX);
    assertThat(dom.getRoot().getTagName(), is(Resources.ROOT_CONN));
    dom = new DomParser(xml);
    assertThat(dom.getRoot().getTagName(), is(Resources.ROOT_LOAD));
  }
View Full Code Here

TOP

Related Classes of org.apache.ctakes.jdl.data.xml.DomParser

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.