Package q_impress.pmi.lib.project

Examples of q_impress.pmi.lib.project.AtomicResourceStructure


   * Default constructor.
   * @throws ResourceException if the resources needed by this task could not be created.
   */
  public AtopTranslationTask(ModelingProject project) throws ResourceException {
    super(TRANSLATOR_NAME);
    this.structure = new AtomicResourceStructure(this);
   
    prismModelResource = new PrismModelResource();
    project.addResource(prismModelResource);
    prismPropertiesResource = new PrismPropertiesResource();
    project.addResource(prismPropertiesResource);
View Full Code Here


    project.addResource(prismPropertiesResource);
  }
 
  public AtopTranslationTask() {
    super(TRANSLATOR_NAME);
    this.structure = new AtomicResourceStructure(this);
  }
View Full Code Here

   * Default constructor.
   */
  public PrismPropertiesResource() {
    super();
   
    this.structure = new AtomicResourceStructure(this);
  }
View Full Code Here

public class PrismModelResource extends ExternalResource {

  public PrismModelResource() {
    super();
   
    this.structure = new AtomicResourceStructure(this);
  }
View Full Code Here

  /** The resource holding the queue network */
  private PrismModelResource jmtResource = null;
 
  public JmtTranslationTask(ModelingProject project) throws ResourceException {
    super(TRANSLATOR_NAME);
    this.structure = new AtomicResourceStructure(this);
   
    jmtResource = new PrismModelResource();
    project.addResource(jmtResource);
  }
View Full Code Here

    project.addResource(jmtResource);
  }
 
  public JmtTranslationTask() {
    super(TRANSLATOR_NAME);
    this.structure = new AtomicResourceStructure(this);
  }
View Full Code Here

   * Default constructor.
   */
  public UmlResource() {
    super();
   
    this.structure = new AtomicResourceStructure(this);
  }
View Full Code Here

TOP

Related Classes of q_impress.pmi.lib.project.AtomicResourceStructure

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.