Package org.cfeclipse.cfmledit.dictionary

Examples of org.cfeclipse.cfmledit.dictionary.Function


  }
 
  @Test
  public void testGetFunction() throws IOException, JDOMException {
    Grammar g = new Grammar("railo3.xml");
    Function function = g.getFunction("imageDrawRect");
    assertEquals(function.getName(), "imageDrawRect");
    assertEquals(function.getReturns(), "void");
    assertTrue(function.getHelp().length()>0);
   
  }
View Full Code Here

TOP

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

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.