1 22 package org.jboss.xb.binding.metadata; 23 24 28 public class MapEntryMetaData 29 { 30 private String impl; 31 private String getKeyMethod; 32 private String setKeyMethod; 33 private String getValueMethod; 34 private String setValueMethod; 35 private String valueType; 36 private boolean nonNullValue; 37 38 public String getImpl() 39 { 40 return impl; 41 } 42 43 public void setImpl(String impl) 44 { 45 this.impl = impl; 46 } 47 48 public String getGetKeyMethod() 49 { 50 return getKeyMethod; 51 } 52 53 public void setGetKeyMethod(String getKeyMethod) 54 { 55 this.getKeyMethod = getKeyMethod; 56 } 57 58 public String getSetKeyMethod() 59 { 60 return setKeyMethod; 61 } 62 63 public void setSetKeyMethod(String setKeyMethod) 64 { 65 this.setKeyMethod = setKeyMethod; 66 } 67 68 public String getGetValueMethod() 69 { 70 return getValueMethod; 71 } 72 73 public void setGetValueMethod(String getValueMethod) 74 { 75 this.getValueMethod = getValueMethod; 76 } 77 78 public String getSetValueMethod() 79 { 80 return setValueMethod; 81 } 82 83 public void setSetValueMethod(String setValueMethod) 84 { 85 this.setValueMethod = setValueMethod; 86 } 87 88 public String getValueType() 89 { 90 return valueType; 91 } 92 93 public void setValueType(String valueType) 94 { 95 this.valueType = valueType; 96 } 97 98 public boolean isNonNullValue() 99 { 100 return nonNullValue; 101 } 102 103 public void setNonNullValue(boolean nonNullValue) 104 { 105 this.nonNullValue = nonNullValue; 106 } 107 } 108 | Popular Tags |