1 16 package org.apache.juddi.datatype.response; 17 18 import java.util.Vector ; 19 20 import org.apache.juddi.datatype.RegistryObject; 21 import org.apache.juddi.datatype.tmodel.TModel; 22 23 30 public class TModelDetail implements RegistryObject 31 { 32 39 String generic; 40 String operator; 41 boolean truncated; 42 Vector tModelVector; 43 44 47 public TModelDetail() 48 { 49 } 50 51 55 public void setGeneric(String genericValue) 56 { 57 this.generic = genericValue; 58 } 59 60 64 public String getGeneric() 65 { 66 return this.generic; 67 } 68 69 72 public void setOperator(String operator) 73 { 74 this.operator = operator; 75 } 76 77 80 public String getOperator() 81 { 82 return this.operator; 83 } 84 85 88 public boolean isTruncated() 89 { 90 return this.truncated; 91 } 92 93 96 public void setTruncated(boolean val) 97 { 98 this.truncated = val; 99 } 100 101 104 public void addTModel(TModel tModel) 105 { 106 if (this.tModelVector == null) 107 this.tModelVector = new Vector (); 108 this.tModelVector.add(tModel); 109 } 110 111 114 public Vector getTModelVector() 115 { 116 return this.tModelVector; 117 } 118 119 122 public void setTModelVector(Vector tModels) 123 { 124 this.tModelVector = tModels; 125 } 126 } | Popular Tags |