1 package org.enhydra.shark.api.internal.toolagent; 2 3 16 public final class AppParameter { 17 18 25 public String the_actual_name = null; 26 27 31 public String the_formal_name = null; 32 33 46 public String the_mode = null; 47 48 54 public Object the_value = null; 55 56 59 public Class the_class = null; 60 61 66 public long the_length = -1; 67 68 73 public long the_type = -1; 74 75 79 public AppParameter () { 80 } 81 82 86 public AppParameter (String _the_actual_name, 87 String _the_formal_name, 88 String _the_mode, 89 Object _the_value, 90 Class _the_class) { 91 92 the_actual_name = _the_actual_name; 93 the_formal_name = _the_formal_name; 94 the_mode = _the_mode; 95 the_value = _the_value; 96 the_class = _the_class; 97 } 99 102 public AppParameter (String _the_actual_name, 103 String _the_formal_name, 104 String _the_mode, 105 Object _the_value, 106 Class _the_class, 107 long _the_length_, 108 long _the_type_) { 109 the_actual_name = _the_actual_name; 110 the_formal_name = _the_formal_name; 111 the_mode = _the_mode; 112 the_value = _the_value; 113 the_class = _the_class; 114 the_length = _the_length_; 115 the_type = _the_type_; 116 } 118 public String toString () { 119 return "[APN="+the_actual_name+", FPN="+the_formal_name+", MODE="+the_mode+", VAL="+the_value+", CLS="+the_class+", LNG="+the_length+", TYP="+the_type+"]"; 120 } 121 } 122 | Popular Tags |