1 15 16 package net.sourceforge.groboutils.junit.v1.iftc; 17 18 28 public class Sample3Impl extends Sample3 implements Sample2, Sample4 { 29 private String [] defaultStrings; 30 31 public Sample3Impl() {} 32 public Sample3Impl( String s[] ) { 33 this.defaultStrings = s; 34 } 35 36 public String [] getStrings() { 37 return this.defaultStrings; 38 } 39 40 public void processStrings() { 41 } 43 } 44 45 | Popular Tags |