Package org.jostraca

Examples of org.jostraca.TemplateElementProcessorException$Code



  public static void testCodeValueSet() {
    String n01 = "n01";
    String v01 = "v01";
    TemplateElementProcessorException tepe
      = new TemplateElementProcessorException( TemplateElementProcessorException.CODE_system,
                                               new ValueSet( n01, v01 ) );
   
    assertTrue( TemplateElementProcessorException.CODE_system == tepe.getCode() );
    assertTrue( v01.equals( ((ValueSet)tepe.getContext()).get( n01 ) ) );
  }
View Full Code Here

TOP

Related Classes of org.jostraca.TemplateElementProcessorException$Code

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.