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