View Javadoc

1   /*
2    * $Id: Target.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  /***
13   * Representation of the <code>Target</code> BPEL element.
14   * 
15   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:09 $
16   * @author Patric Fornasier
17   * @author Pawel Kowalski
18   */
19  public interface Target {
20  
21      public Link getLink();
22  
23      public void setLink(Link link);
24  
25  }