CVS update: talon/src/java/talon/interfaces

From: cvs@openprivacy.org
Date: Thu Feb 08 2001 - 20:18:09 PST

  • Next message: cvs@openprivacy.org: "CVS update: talon/src/java/talon/util"

    Date: Thursday February 8, 19101 @ 20:18
    Author: burton
    CVSWEB Options: -------------------

    Main CVSWeb: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi

    View this module: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/interfaces

    -----------------------------------

    Update of /usr/local/cvs/public/talon/src/java/talon/interfaces
    In directory giga:/tmp/cvs-serv21939/src/java/talon/interfaces

    Modified Files:
            Logger.java PropertyManager.java
    Log Message:
    properties should be importing correctly

    *****************************************************************
    File: talon/src/java/talon/interfaces/Logger.java

    CVSWEB Options: -------------------

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/interfaces/Logger.java?annotate=1.3

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/interfaces/Logger.java?rev=1.3&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/interfaces/Logger.java.diff?r1=1.3&r2=1.2

    -----------------------------------

    Index: talon/src/java/talon/interfaces/Logger.java
    diff -u talon/src/java/talon/interfaces/Logger.java:1.2 talon/src/java/talon/interfaces/Logger.java:1.3
    --- talon/src/java/talon/interfaces/Logger.java:1.2 Tue Jan 16 08:06:30 2001
    +++ talon/src/java/talon/interfaces/Logger.java Thu Feb 8 20:18:09 2001
    @@ -11,21 +11,23 @@
     
     import java.util.*;
     
    +import talon.Component;
     
    +
     /**
      * Class similar to java.lang.Properties
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
      */
    -public interface Logger {
    +public interface Logger extends Component {
     
     
         /**
          * Log a message.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
          */
         public void message( String message );
     
    @@ -35,7 +37,7 @@
          * @param source The source object. The classname of this object will be
          * entered into the log
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
          */
         public void message( Object source, String message );
         
    @@ -43,7 +45,7 @@
          * Log a message.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
          */
         public void debug( String message );
     
    @@ -53,7 +55,7 @@
          * @param source The source object. The classname of this object will be
          * entered into the log
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
          */
         public void debug( Object source, String message );
         
    @@ -61,7 +63,7 @@
          * Log a warning message.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
          */
         public void warning( String message );
         
    @@ -71,7 +73,7 @@
          * @param source The source object. The classname of this object will be
          * entered into the log
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
          */
         public void warning( Object source, String message );
         
    @@ -79,7 +81,7 @@
          * Log an error message.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
          */
         public void error( String message );
     
    @@ -89,7 +91,7 @@
          * @param source The source object. The classname of this object will be
          * entered into the log
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Logger.java,v 1.2 2001/01/16 16:06:30 burton Exp $
    + * @version $Id: Logger.java,v 1.3 2001/02/09 04:18:09 burton Exp $
          */
         public void error( Object source, String message );
         

    *****************************************************************
    File: talon/src/java/talon/interfaces/PropertyManager.java

    CVSWEB Options: -------------------

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/interfaces/PropertyManager.java?annotate=1.6

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/interfaces/PropertyManager.java?rev=1.6&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/interfaces/PropertyManager.java.diff?r1=1.6&r2=1.5

    -----------------------------------

    Index: talon/src/java/talon/interfaces/PropertyManager.java
    diff -u talon/src/java/talon/interfaces/PropertyManager.java:1.5 talon/src/java/talon/interfaces/PropertyManager.java:1.6
    --- talon/src/java/talon/interfaces/PropertyManager.java:1.5 Wed Feb 7 01:59:33 2001
    +++ talon/src/java/talon/interfaces/PropertyManager.java Thu Feb 8 20:18:09 2001
    @@ -9,22 +9,23 @@
     
     package talon.interfaces;
     
    -import java.util.*;
    +import talon.Component;
     
    +import java.util.*;
     
     /**
      * Class similar to java.lang.Properties
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
      */
    -public interface PropertyManager {
    +public interface PropertyManager extends Component {
     
         /**
          * Get a given property from parsed props.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
          */
         public String getProperty( String name );
     
    @@ -32,7 +33,7 @@
          * Get a given property from parsed props. Return default if it is not defined.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
          */
         public String getProperty( String name, String value );
         
    @@ -40,7 +41,7 @@
          * Get a property but assume it is a boolean
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
          */
         public boolean getBoolean( String name );
     
    @@ -60,7 +61,7 @@
          * requested a name of "example".
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
          */
         public Vector getVector( String name );
     
    @@ -84,7 +85,7 @@
          *
          * @see getVector#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
          */
         public Hashtable getGroup( String key );
         
    @@ -92,7 +93,7 @@
          * Set a property
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
          */
         public PropertyManager setProperty( String name, String value );
     
    @@ -100,7 +101,7 @@
          * Set a boolean property
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
          */
         public PropertyManager setBoolean( String namme, boolean value );
     
    @@ -108,7 +109,7 @@
          * Get all known keys for registered properties.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.5 2001/02/07 09:59:33 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.6 2001/02/09 04:18:09 burton Exp $
          */
         public Enumeration getKeys();
         



    This archive was generated by hypermail 2b30 : Thu Feb 08 2001 - 20:19:41 PST