You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by do...@apache.org on 2002/07/14 03:28:02 UTC

cvs commit: jakarta-avalon-excalibur/store/src/java/org/apache/excalibur/store Store.java

donaldp     2002/07/13 18:28:02

  Modified:    store/src/java/org/apache/excalibur/store Store.java
  Log:
  Whitespace.
  
  Revision  Changes    Path
  1.3       +7 -8      jakarta-avalon-excalibur/store/src/java/org/apache/excalibur/store/Store.java
  
  Index: Store.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/store/src/java/org/apache/excalibur/store/Store.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Store.java	6 May 2002 09:02:59 -0000	1.2
  +++ Store.java	14 Jul 2002 01:28:01 -0000	1.3
  @@ -7,10 +7,9 @@
    */
   package org.apache.excalibur.store;
   
  -import org.apache.avalon.framework.component.Component;
  -
   import java.io.IOException;
   import java.util.Enumeration;
  +import org.apache.avalon.framework.component.Component;
   
   /**
    * A Store is an object managing arbitrary data. It holds data stored
  @@ -37,21 +36,21 @@
       String ROLE = Store.class.getName();
   
       /** The role for a transient store */
  -    String TRANSIENT_STORE = ROLE+"/TransientStore";
  +    String TRANSIENT_STORE = ROLE + "/TransientStore";
       /** The role for a persistent store (this is an alias for ROLE) */
       String PERSISTENT_STORE = ROLE;
   
       /**
        * Get the object associated to the given unique key.
        */
  -    Object get(Object key);
  +    Object get( Object key );
   
       /**
        * Store the given object. It is up to the
        * caller to ensure that the key has a persistent state across
        * different JVM executions.
        */
  -    void store(Object key, Object value) throws IOException;
  +    void store( Object key, Object value ) throws IOException;
   
       /**
        * Try to free some used memory. The transient store can simply remove
  @@ -63,12 +62,12 @@
       /**
        * Remove the object associated to the given key.
        */
  -    void remove(Object key);
  +    void remove( Object key );
   
       /**
        * Indicates if the given key is associated to a contained object.
        */
  -    boolean containsKey(Object key);
  +    boolean containsKey( Object key );
   
       /**
        * Returns the list of used keys as an Enumeration of Objects.
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>