1 22 package org.jboss.xb.binding.metadata; 23 24 28 public class AddMethodMetaData 29 { 30 private String methodName; 31 private String valueType; 32 private boolean childType; 33 34 public String getMethodName() 35 { 36 return methodName; 37 } 38 39 public void setMethodName(String methodName) 40 { 41 this.methodName = methodName; 42 } 43 44 public String getValueType() 45 { 46 return valueType; 47 } 48 49 public void setValueType(String valueType) 50 { 51 this.valueType = valueType; 52 } 53 54 public boolean isChildType() 55 { 56 return childType; 57 } 58 59 public void setChildType(boolean childType) 60 { 61 this.childType = childType; 62 } 63 } 64 | Popular Tags |