package Current.search; import Current.basic.*; /** * * @author pat */ public class Results { public String[] words; public Complex z; /** Creates a new instance of BasicSearchResults */ public Results(String[] words, double x, double y) { this.words=words; this.z=new Complex(x,y); } /** Creates a new instance of BasicSearchResults */ public Results(String[] words, Complex z) { this.words=words; this.z=z; } public Results(Complex z) { this.words=new String[0]; this.z=z; } }