haul        02/03/15 07:07:34

  Modified:    src/scratchpad/src/org/apache/cocoon/acting
                        ModularDatabaseAction.java
  Log:
  change access to get/setAttribute from default to protected
  
  Revision  Changes    Path
  1.7       +3 -3      
xml-cocoon2/src/scratchpad/src/org/apache/cocoon/acting/ModularDatabaseAction.java
  
  Index: ModularDatabaseAction.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/scratchpad/src/org/apache/cocoon/acting/ModularDatabaseAction.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ModularDatabaseAction.java        22 Feb 2002 06:58:02 -0000      1.6
  +++ ModularDatabaseAction.java        15 Mar 2002 15:07:34 -0000      1.7
  @@ -130,7 +130,7 @@
    * components can utilize the helper components.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Christian Haul</a>
  - * @version CVS $Id: ModularDatabaseAction.java,v 1.6 2002/02/22 06:58:02 cziegeler 
Exp $
  + * @version CVS $Id: ModularDatabaseAction.java,v 1.7 2002/03/15 15:07:34 haul Exp $
    */
   public abstract class ModularDatabaseAction extends AbstractDatabaseAction
       implements Disposable, ThreadSafe, Contextualizable {
  @@ -508,7 +508,7 @@
        * This method overrides super class' method to allow an OutputHelper
        * to take care of what to do with the values.
        */
  -    void setRequestAttribute(Request request, String key, Object value) {
  +    protected void setRequestAttribute(Request request, String key, Object value) {
   
           try {
               OutputHelper oh = (OutputHelper) outputMapping.select( (String) 
defaultModeNames.get( MODE_OUTPUT ) );
  @@ -529,7 +529,7 @@
        * This method overrides super class' method to allow an OutputHelper
        * to take care of where to get the values.
        */
  -    Object getRequestAttribute(Request request, String key) {
  +    protected Object getRequestAttribute(Request request, String key) {
   
           Object value = null;
           try {
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to