From: Arne V. <cob...@us...> - 2004-07-13 18:42:34
|
Update of /cvsroot/jrobin/src/org/jrobin/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9700/org/jrobin/core Modified Files: RrdBackendFactory.java RrdFileBackendFactory.java RrdMemoryBackendFactory.java RrdNioBackendFactory.java Log Message: JRobin 1.4.0 - Minor tweaks - Added LazyDemo demo Index: RrdFileBackendFactory.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/core/RrdFileBackendFactory.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RrdFileBackendFactory.java 1 Jun 2004 14:41:01 -0000 1.4 --- RrdFileBackendFactory.java 13 Jul 2004 18:42:24 -0000 1.5 *************** *** 64,68 **** * @return Factory name (equals to string "FILE") */ ! protected String getFactoryName() { return NAME; } --- 64,68 ---- * @return Factory name (equals to string "FILE") */ ! public String getFactoryName() { return NAME; } Index: RrdNioBackendFactory.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/core/RrdNioBackendFactory.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RrdNioBackendFactory.java 9 Jun 2004 09:44:47 -0000 1.7 --- RrdNioBackendFactory.java 13 Jul 2004 18:42:24 -0000 1.8 *************** *** 133,137 **** * @return Factory name (equals to string "NIO") */ ! protected String getFactoryName() { return NAME; } --- 133,137 ---- * @return Factory name (equals to string "NIO") */ ! public String getFactoryName() { return NAME; } Index: RrdBackendFactory.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/core/RrdBackendFactory.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** RrdBackendFactory.java 1 Jun 2004 14:41:01 -0000 1.6 --- RrdBackendFactory.java 13 Jul 2004 18:42:19 -0000 1.7 *************** *** 190,193 **** * @return Name of the factory. */ ! protected abstract String getFactoryName(); } --- 190,193 ---- * @return Name of the factory. */ ! public abstract String getFactoryName(); } Index: RrdMemoryBackendFactory.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/core/RrdMemoryBackendFactory.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RrdMemoryBackendFactory.java 20 May 2004 14:49:29 -0000 1.2 --- RrdMemoryBackendFactory.java 13 Jul 2004 18:42:24 -0000 1.3 *************** *** 94,98 **** * @return Factory name (equals to "MEMORY"). */ ! protected String getFactoryName() { return NAME; } --- 94,98 ---- * @return Factory name (equals to "MEMORY"). */ ! public String getFactoryName() { return NAME; } |