View Javadoc

1   /*
2    * $Id: Source.java,v 1.1 2004/12/15 14:18:09 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
8    */
9   
10  package bexee.model.elements;
11  
12  import bexee.model.expression.BooleanExpression;
13  
14  /***
15   * Representation of the <code>Source</code> BPEL element.
16   * 
17   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:09 $
18   * @author Patric Fornasier
19   * @author Pawel Kowalski
20   */
21  public interface Source {
22  
23      public Link getLink();
24  
25      public void setLink(Link link);
26  
27      public BooleanExpression getTransitionCondition();
28  
29      public void setTransitionCondition(BooleanExpression booleanExpression);
30  
31  }