universal
Class MethSignStr

java.lang.Object
  |
  +--universal.MethSignStr

public class MethSignStr
extends java.lang.Object

This class is used to store information about each method implemented by the application server


Field Summary
 java.lang.String name
          name of the method
 int[] param_modes
          Array which contains the modes of each parameters of the method (in,out,inout)
 org.omg.CORBA.TypeCode[] param_types
          Array which contains the type of each parameters of the method(float,..).
 boolean readMethod
          true if the method just read and doesn't change the state of the object
 
Constructor Summary
MethSignStr()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public java.lang.String name
name of the method


param_modes

public int[] param_modes
Array which contains the modes of each parameters of the method (in,out,inout)


param_types

public org.omg.CORBA.TypeCode[] param_types
Array which contains the type of each parameters of the method(float,..).
If we have register the modes of one parameter in param_modes[k].
Its type should be register in param_types[k]


readMethod

public boolean readMethod
true if the method just read and doesn't change the state of the object

Constructor Detail

MethSignStr

public MethSignStr()