Package com.isencia.passerelle.domain.cap

Examples of com.isencia.passerelle.domain.cap.Director


   * assign a clone of this director, using the method getBatchDirectorClone().
   * @return
   * @throws Exception
   */
  public Director createBatchDirector(DirectorType directorType) throws Exception {
    Director d = DirectorFactory.createNewDirector(directorType, WORKSPACE);
    batchDirector = d;
    return d;
  }
View Full Code Here


    batchDirector = d;
    return d;
  }
 
  public Director getBatchDirectorClone() throws CloneNotSupportedException {
    Director d = (Director) batchDirector.clone(WORKSPACE);
    // batch directors should not appear in the cfg panels
    // GenericHMI.showModelForm(...) checks for the presence of this attribute.
    // when present : cfg panel is not created
    try {
      new Attribute(d,"__not_configurable");
View Full Code Here

TOP

Related Classes of com.isencia.passerelle.domain.cap.Director

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.