Package org.apache.jmeter.ejb.jndi.control

Examples of org.apache.jmeter.ejb.jndi.control.JndiTestSample


   * @param cont  component to be saved
   * @param out    <code>Writer</code> where config will be written out to
   */
  public void save(Saveable cont, Writer out) throws java.io.IOException
  {
    JndiTestSample controller = (JndiTestSample)cont;
    writeMainTag(out, controller);
    writeDefaultJndi(out, controller);
    writeSubElements(controller, out);
    out.write("</JndiTestSample>\n");
  }
View Full Code Here

TOP

Related Classes of org.apache.jmeter.ejb.jndi.control.JndiTestSample

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.