Package q_impress.pmi.lib.decorators.marte

Examples of q_impress.pmi.lib.decorators.marte.PaStepDecorator


   * @return the stub.
   */
  public PaStepStub getPaStepStub() {
    Stereotype stereotype = action.getApplicableStereotype(PaStepDecorator.QUALIFIED_NAME);
   
    PaStepDecorator decorator = null;
    try {
      decorator = (PaStepDecorator) getFactory().getDecorator(stereotype);
    } catch (ClassNotFoundException e) {} // cannot happen
      catch (InvalidContextException e) {} // cannot happen
    return (PaStepStub) decorator.getStub(action);
  }
View Full Code Here


  private synchronized PaStepStub getPaStepStub() {
    if (paStepStub != null) return paStepStub;
   
    Stereotype stereotype = edge.getApplicableStereotype(PaStepDecorator.QUALIFIED_NAME);
   
    PaStepDecorator decorator = null;
    try {
      decorator = (PaStepDecorator) getFactory().getDecorator(stereotype);
    } catch (ClassNotFoundException e) {} // cannot happen
      catch (InvalidContextException e) {} // cannot happen
    return (PaStepStub) decorator.getStub(edge);
  }
View Full Code Here

TOP

Related Classes of q_impress.pmi.lib.decorators.marte.PaStepDecorator

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.