From: <ty...@us...> - 2003-12-09 15:56:20
|
Update of /cvsroot/junk/junk/WEB-INF/classes/junk/util In directory sc8-pr-cvs1:/tmp/cvs-serv20558 Modified Files: ResultProperties.java Log Message: Index: ResultProperties.java =================================================================== RCS file: /cvsroot/junk/junk/WEB-INF/classes/junk/util/ResultProperties.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ResultProperties.java 17 Nov 2003 19:39:59 -0000 1.1.1.1 --- ResultProperties.java 9 Dec 2003 15:56:17 -0000 1.2 *************** *** 23,68 **** package junk.util; ! public class ResultProperties{ ! private int anzComputer = 0; private int anzDateien = 0; private String linkPrefix = ""; private Long searchTime = null; ! ! public ResultProperties(){ } ! public void setAnzComputer(int anzComputer){ this.anzComputer = anzComputer; } ! ! public void setAnzDateien(int anzDateien){ this.anzDateien = anzDateien; } ! ! public int getAnzDateien(){ return this.anzDateien; } ! ! public int getAnzComputer(){ return this.anzComputer; } ! ! public String getLinkPrefix(){ return this.linkPrefix; } ! ! public void setLinkPrefix(String linkPrefix){ this.linkPrefix = linkPrefix; } ! ! public Long getSearchTime(){ return this.searchTime; } - - public void setSearchTime(Long searchTime){ - this.searchTime = searchTime; - } - } - --- 23,65 ---- package junk.util; ! public class ResultProperties { private int anzComputer = 0; private int anzDateien = 0; private String linkPrefix = ""; private Long searchTime = null; ! ! public ResultProperties() { } ! public void setAnzComputer(int anzComputer) { this.anzComputer = anzComputer; } ! ! public void setAnzDateien(int anzDateien) { this.anzDateien = anzDateien; } ! ! public int getAnzDateien() { return this.anzDateien; } ! ! public int getAnzComputer() { return this.anzComputer; } ! ! public String getLinkPrefix() { return this.linkPrefix; } ! ! public void setLinkPrefix(String linkPrefix) { this.linkPrefix = linkPrefix; } ! ! public Long getSearchTime() { return this.searchTime; } + public void setSearchTime(Long searchTime) { + this.searchTime = searchTime; + } + } \ No newline at end of file |