1 16 17 package org.apache.commons.betwixt; 18 19 20 25 public class Tweedledee { 26 27 private Tweedledum tweedledum; 28 29 public Tweedledee () {} 30 public Tweedledee(Tweedledum tweedledum) { 31 setBrother(tweedledum); 32 } 33 34 public Tweedledum getBrother() { 35 return tweedledum; 36 } 37 38 public void setBrother(Tweedledum tweedledum) { 39 this.tweedledum = tweedledum; 40 } 41 42 public String getName() { 43 return "Tweedledee"; 44 } 45 } 46 47 48 | Popular Tags |