From: Sunsern C. <sch...@us...> - 2009-06-08 23:40:54
|
Update of /cvsroot/jboost/jboost/src/jboost In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11232/src/jboost Modified Files: Tag: jboost-2_0 AllTests.java ComplexLearner.java NotSupportedException.java Log Message: jboost 2.0 Index: ComplexLearner.java =================================================================== RCS file: /cvsroot/jboost/jboost/src/jboost/ComplexLearner.java,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.4.1 diff -C2 -d -r1.1.1.1 -r1.1.1.1.4.1 *** ComplexLearner.java 16 May 2007 04:06:02 -0000 1.1.1.1 --- ComplexLearner.java 8 Jun 2009 23:40:49 -0000 1.1.1.1.4.1 *************** *** 3,7 **** import java.util.Vector; - import jboost.booster.AbstractBooster; import jboost.booster.Booster; import jboost.controller.Configuration; --- 3,6 ---- Index: NotSupportedException.java =================================================================== RCS file: /cvsroot/jboost/jboost/src/jboost/NotSupportedException.java,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.4.1 diff -C2 -d -r1.1.1.1 -r1.1.1.1.4.1 *** NotSupportedException.java 16 May 2007 04:06:02 -0000 1.1.1.1 --- NotSupportedException.java 8 Jun 2009 23:40:49 -0000 1.1.1.1.4.1 *************** *** 1,17 **** package jboost; ! /** an Exception that is used to alert that a particular method is not ! supported for this class */ public class NotSupportedException extends Exception { - public NotSupportedException(String m, String c) { - message = "The class "+c - +" does not support the method "+m+"\n"; - } ! public String getMessage() {return message;} ! private String message; ! } --- 1,24 ---- package jboost; ! /** ! * an Exception that is used to alert that a particular method is not supported ! * for this class ! */ public class NotSupportedException extends Exception { ! private static final long serialVersionUID = -3925862347277553481L; ! public NotSupportedException(String m, String c) { ! message = "The class " + c + " does not support the method " + m + "\n"; ! } + public NotSupportedException(String m) { + message = m + "\n"; + } + public String getMessage() { + return message; + } + private String message; + } Index: AllTests.java =================================================================== RCS file: /cvsroot/jboost/jboost/src/jboost/AllTests.java,v retrieving revision 1.2 retrieving revision 1.2.4.1 diff -C2 -d -r1.2 -r1.2.4.1 *** AllTests.java 2 Oct 2007 02:17:14 -0000 1.2 --- AllTests.java 8 Jun 2009 23:40:49 -0000 1.2.4.1 *************** *** 5,11 **** package jboost; import jboost.booster.BoosterTestSuite; import jboost.controller.ControllerTestSuite; - import jboost.atree.AtreeTestSuite; import junit.framework.Test; import junit.framework.TestSuite; --- 5,11 ---- package jboost; + import jboost.atree.AtreeTestSuite; import jboost.booster.BoosterTestSuite; import jboost.controller.ControllerTestSuite; import junit.framework.Test; import junit.framework.TestSuite; |