1 16 17 package org.springframework.beans.factory.xml; 18 19 import java.util.Collection ; 20 21 28 public class MixedCollectionBean { 29 30 protected static int nrOfInstances = 0; 31 32 public static void resetStaticState() { 33 nrOfInstances = 0; 34 } 35 36 private Collection jumble; 37 38 public MixedCollectionBean() { 39 nrOfInstances++; 40 } 41 42 45 public Collection getJumble() { 46 return jumble; 47 } 48 49 53 public void setJumble(Collection jumble) { 54 this.jumble = jumble; 55 } 56 57 } 58 | Popular Tags |