craigmcc    00/10/21 06:30:32

  Modified:    catalina/src/share/org/apache/catalina Context.java
  Log:
  Add getDisplayName and setDisplayName.
  
  Revision  Changes    Path
  1.11      +26 -12    
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Context.java
  
  Index: Context.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Context.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- Context.java      2000/10/14 05:21:09     1.10
  +++ Context.java      2000/10/21 13:30:32     1.11
  @@ -1,13 +1,13 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Context.java,v 
1.10 2000/10/14 05:21:09 craigmcc Exp $
  - * $Revision: 1.10 $
  - * $Date: 2000/10/14 05:21:09 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Context.java,v 
1.11 2000/10/21 13:30:32 craigmcc Exp $
  + * $Revision: 1.11 $
  + * $Date: 2000/10/21 13:30:32 $
    *
    * ====================================================================
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -15,7 +15,7 @@
    * are met:
    *
    * 1. Redistributions of source code must retain the above copyright
  - *    notice, this list of conditions and the following disclaimer. 
  + *    notice, this list of conditions and the following disclaimer.
    *
    * 2. Redistributions in binary form must reproduce the above copyright
    *    notice, this list of conditions and the following disclaimer in
  @@ -23,15 +23,15 @@
    *    distribution.
    *
    * 3. The end-user documentation included with the redistribution, if
  - *    any, must include the following acknowlegement:  
  - *       "This product includes software developed by the 
  + *    any, must include the following acknowlegement:
  + *       "This product includes software developed by the
    *        Apache Software Foundation (http://www.apache.org/)."
    *    Alternately, this acknowlegement may appear in the software itself,
    *    if and wherever such third-party acknowlegements normally appear.
    *
    * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
    *    Foundation" must not be used to endorse or promote products derived
  - *    from this software without prior written permission. For written 
  + *    from this software without prior written permission. For written
    *    permission, please contact [EMAIL PROTECTED]
    *
    * 5. Products derived from this software may not be called "Apache"
  @@ -59,7 +59,7 @@
    *
    * [Additional notices, if required by prior licensing conditions]
    *
  - */ 
  + */
   
   
   package org.apache.catalina;
  @@ -95,7 +95,7 @@
    * <p>
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.10 $ $Date: 2000/10/14 05:21:09 $
  + * @version $Revision: 1.11 $ $Date: 2000/10/21 13:30:32 $
    */
   
   public interface Context extends Container {
  @@ -182,11 +182,25 @@
   
   
       /**
  +     * Return the display name of this web application.
  +     */
  +    public String getDisplayName();
  +
  +
  +    /**
  +     * Set the display name of this web application.
  +     *
  +     * @param displayName The new display name
  +     */
  +    public void setDisplayName(String displayName);
  +
  +
  +    /**
        * Return the distributable flag for this web application.
        */
       public boolean getDistributable();
  -    
  -    
  +
  +
       /**
        * Set the distributable flag for this web application.
        *
  
  
  

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

Reply via email to