1 10 package org.nanocontainer.testmodel; 11 12 public class ThingThatTakesParamsInConstructor { 13 private String value; 14 private Integer intValue; 15 16 public ThingThatTakesParamsInConstructor(String value, Integer intValue) { 17 this.value = value; 18 this.intValue = intValue; 19 } 20 21 public String getValue() { 22 return value + intValue; 23 } 24 } 25 | Popular Tags |