dlr         02/01/15 02:24:36

  Modified:    src/java/org/apache/stratum/jcs/access/behavior
                        IGroupCacheAccess.java
  Log:
  Removed redundant decl specifiers and broke long lines at 80 columns.
  
  Revision  Changes    Path
  1.2       +13 -10    
jakarta-turbine-stratum/src/java/org/apache/stratum/jcs/access/behavior/IGroupCacheAccess.java
  
  Index: IGroupCacheAccess.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-stratum/src/java/org/apache/stratum/jcs/access/behavior/IGroupCacheAccess.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -u -r1.1 -r1.2
  --- IGroupCacheAccess.java    15 Jan 2002 06:14:12 -0000      1.1
  +++ IGroupCacheAccess.java    15 Jan 2002 10:24:36 -0000      1.2
  @@ -13,27 +13,30 @@
   public interface IGroupCacheAccess extends ICacheAccess {
   
     /////////////////////////////////////////
  -  public Object getG( String name, String group );
  +  Object getG( String name, String group );
   
     /////////////////////////////////////////
     void putG(Object key, String group, Object obj) throws CacheException;
   
     /////////////////////////////////////////
  -  void putG(Object key, String group, Object obj, Attributes attr) throws 
CacheException;
  +  void putG(Object key, String group, Object obj, Attributes attr)
  +      throws CacheException;
   
     /**
  -   * DefineGroup is used to create a new group object. Attributes may be set on the 
group. If no attributes are
  -   * specified, the attributes of the region or group the new group is associated 
with are used. If group is
  -   * specified the new group will be associated with the group specified.
  +   * DefineGroup is used to create a new group object. Attributes may
  +   * be set on the group. If no attributes are specified, the
  +   * attributes of the region or group the new group is associated
  +   * with are used. If group is specified the new group will be
  +   * associated with the group specified.
      */
     void defineGroup(String name) throws CacheException;
     void defineGroup(String name, Attributes attr) throws CacheException;
   
  -  public Attributes getGroupAttributes(Object name) throws CacheException ;
  -  public Enumeration getAttributeNames( Object name );
  +  Attributes getGroupAttributes(Object name) throws CacheException ;
  +  Enumeration getAttributeNames( Object name );
   
  -  public void setAttribute(String name, String group, Object value );
  -  public void setAttribute(String name, String group, Object value, Attributes attr 
);
  -  public Object getAttribute(String name, String group );
  +  void setAttribute(String name, String group, Object value );
  +  void setAttribute(String name, String group, Object value, Attributes attr );
  +  Object getAttribute(String name, String group );
   
   }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to