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

From: cvs@openprivacy.org
Date: Fri Mar 09 2001 - 16:10:43 PST

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

    Date: Friday March 9, 19101 @ 16:10
    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-serv17970/src/java/talon/interfaces

    Modified Files:
            PropertyManager.java
    Log Message:
    reworked component initialization. ...

    *****************************************************************
    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.8

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/talon/src/java/talon/interfaces/PropertyManager.java?rev=1.8&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.8&r2=1.7

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

    Index: talon/src/java/talon/interfaces/PropertyManager.java
    diff -u talon/src/java/talon/interfaces/PropertyManager.java:1.7 talon/src/java/talon/interfaces/PropertyManager.java:1.8
    --- talon/src/java/talon/interfaces/PropertyManager.java:1.7 Sun Feb 11 14:02:11 2001
    +++ talon/src/java/talon/interfaces/PropertyManager.java Fri Mar 9 16:10:43 2001
    @@ -18,15 +18,15 @@
      * Class similar to java.lang.Properties
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
      */
    -public interface PropertyManager extends Component {
    +public interface PropertyManager extends Component, Dumpable {
     
         /**
          * 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.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public Object getProperty( String name );
     
    @@ -34,7 +34,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.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public Object getProperty( String name, Object value );
     
    @@ -42,7 +42,7 @@
          * Set a property
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public PropertyManager setProperty( String name, Object value );
     
    @@ -50,7 +50,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.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public boolean getBoolean( String name );
     
    @@ -59,7 +59,7 @@
          * Set a boolean property
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public PropertyManager setBoolean( String namme, boolean value );
     
    @@ -67,7 +67,7 @@
          * get a string property
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public String getString( String _name );
     
    @@ -75,7 +75,7 @@
          * get a string property but specify a default.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public String getString( String _name, String _default );
         
    @@ -83,7 +83,7 @@
          * Set a string property
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public PropertyManager setString( String _name, String _value );
          
    @@ -103,7 +103,7 @@
          * requested a name of "example".
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public Vector getVector( String name );
     
    @@ -127,7 +127,7 @@
          *
          * @see getVector#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public PropertyManager getGroup( String key );
     
    @@ -135,7 +135,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.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public Enumeration getKeys();
     
    @@ -144,7 +144,7 @@
          * They are not found then we should throw and Exception.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public void require( String[] properties ) throws TalonException;
     
    @@ -152,25 +152,8 @@
          * Return true if the given key exists within this PropertyManager
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    + * @version $Id: PropertyManager.java,v 1.8 2001/03/10 00:10:43 burton Exp $
          */
         public boolean exists( String key );
    -
    - /**
    - * Dump the property manager to an output channel.
    - *
    - * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    - */
    - public void list();
    -
    -
    - /**
    - * Dump the property manager to an output channel.
    - *
    - * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: PropertyManager.java,v 1.7 2001/02/11 22:02:11 burton Exp $
    - */
    - public void list( PrintStream ps);
         
     }



    This archive was generated by hypermail 2b30 : Fri Mar 09 2001 - 16:12:15 PST