KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Util > ConnectorProtocolGen > RoleDescription


1 /* $Id: RoleDescription.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */
2 package SOFA.SOFAnode.Util.ConnectorProtocolGen;
3
4
5 /** Description of connector role.
6   * @author Petr Hnetynka
7   */

8 public class RoleDescription {
9   /** Declaration of role (string from <b>bind</b> declaration from CDL description. */
10   public String JavaDoc declaration;
11   /** Array of renamed, fully qualified methods of role. */
12   public String JavaDoc[] methods;
13
14   /** Constructor */
15   public RoleDescription(String JavaDoc declaration, String JavaDoc[] methods) {
16     this.declaration = declaration;
17     this.methods = methods;
18   }
19 }
20
Popular Tags