KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Made > CDL > CompParam


1 /* $Id: CompParam.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */
2 package SOFA.SOFAnode.Made.CDL;
3
4 /** class for method's parameters */
5 class CompParam extends CompObjectIm {
6   public static final int p_in = 0;
7   public static final int p_out = 1;
8   public static final int p_inout = 2;
9   
10   public String JavaDoc name;
11   public CompType type;
12   public int mode;
13   
14   public CompParam(String JavaDoc name, CompType type, int mode) {
15     super(ObjectsKind.o_Param);
16     this.name = name;
17     this.type = type;
18     this.mode = mode;
19   }
20
21   public void checkConsist(EnumList props, CompRepository rep) {}
22 }
23
Popular Tags