1 16 package net.sf.dozer.util.mapping.vo; 17 18 import java.util.Collection ; 19 20 26 public class TestCustomConverterObjectPrime extends BaseTestObject { 27 public Double doubleAttribute; 28 29 public double primitiveDoubleAttribute; 30 31 public Collection names; 32 33 public Double getDoubleAttribute() { 34 return doubleAttribute; 35 } 36 37 public void setDoubleAttribute(Double attribute) { 38 this.doubleAttribute = attribute; 39 } 40 41 public Collection getNames() { 42 return names; 43 } 44 45 public void setNames(Collection names) { 46 this.names = names; 47 } 48 49 public double getPrimitiveDoubleAttribute() { 50 return primitiveDoubleAttribute; 51 } 52 53 public void setPrimitiveDoubleAttribute(double primitiveDoubleAttribute) { 54 this.primitiveDoubleAttribute = primitiveDoubleAttribute; 55 } 56 57 } 58 | Popular Tags |