00001 class Wrapper 00002 { 00003 private Pair p; 00004 00005 Wrapper(Pair x) 00006 { 00007 this.p = x; 00008 } 00009 00010 public synchronized void inclo () 00011 { 00012 this.p.inclo(); 00013 } 00014 00015 public synchronized void inchi () 00016 { 00017 this.p.inchi(); 00018 } 00019 }