1 27 28 package javax.management.loading; 29 30 import java.util.ArrayList ; 31 import java.util.Vector ; 32 33 38 class SimpleMLet 39 { 40 private String code = null; 41 private String object = null; 42 private Vector archive = null; 43 private String codebase = null; 44 private String name = null; 45 private String version = null; 46 private ArrayList argTypes = null; 47 private ArrayList argValues = null; 48 49 SimpleMLet() 50 { 51 argTypes = new ArrayList (); 52 argValues = new ArrayList (); 53 } 54 55 String getCode() 56 { 57 return code; 58 } 59 60 void setCode(String code) 61 { 62 this.code = code; 63 } 64 65 String getObject() 66 { 67 return object; 68 } 69 70 void setObject(String object) 71 { 72 this.object = object; 73 } 74 75 Vector getArchive() 76 { 77 return archive; 78 } 79 80 void setArchive(Vector archive) 81 { 82 this.archive = archive; 83 } 84 85 String getCodebase() 86 { 87 return codebase; 88 } 89 90 void setCodebase(String codebase) 91 { 92 this.codebase = codebase; 93 } 94 95 String getName() 96 { 97 return name; 98 } 99 100 void setName(String name) 101 { 102 this.name = name; 103 } 104 105 String getVersion() 106 { 107 return version; 108 } 109 110 void setVersion(String version) 111 { 112 this.version = version; 113 } 114 115 ArrayList getArgTypes() 116 { 117 return argTypes; 118 } 119 120 void setArgTypes(ArrayList argTypes) 121 { 122 this.argTypes = argTypes; 123 } 124 125 ArrayList getArgValues() 126 { 127 return argValues; 128 } 129 130 void setArgValues(ArrayList argValues) 131 { 132 this.argValues = argValues; 133 } 134 } | Popular Tags |