Package org.cfeclipse.cfmledit.dictionary

Examples of org.cfeclipse.cfmledit.dictionary.Scope


 
  @Test
  public void testGetScope() throws IOException, JDOMException {
    Grammar g = new Grammar("railo3.xml");
    //type="String" value="Server.ColdFusion.ProductName">
    Scope scope= g.getScope("Server.ColdFusion.ProductName");
    assertEquals(scope.getValue(), "Server.ColdFusion.ProductName");
    assertEquals(scope.getType(), "String");
    assertTrue(scope.getHelp().length()>0);
  }
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfmledit.dictionary.Scope

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.