01: package watij.finders; 02: 03: public class UrlFinder extends AttributeFinder implements Symbol { 04: 05: public UrlFinder(String name) { 06: super (name); 07: } 08: 09: public UrlFinder(String name, String what) { 10: super(name, what); 11: } 12: }