File Source: CreateWeblogBean.java

         /* 
    P/P   *  Method: org.apache.roller.weblogger.ui.struts2.core.CreateWeblogBean__static_init
          */
     1  /*
     2   * Licensed to the Apache Software Foundation (ASF) under one or more
     3   *  contributor license agreements.  The ASF licenses this file to You
     4   * under the Apache License, Version 2.0 (the "License"); you may not
     5   * use this file except in compliance with the License.
     6   * You may obtain a copy of the License at
     7   *
     8   *     http://www.apache.org/licenses/LICENSE-2.0
     9   *
    10   * Unless required by applicable law or agreed to in writing, software
    11   * distributed under the License is distributed on an "AS IS" BASIS,
    12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13   * See the License for the specific language governing permissions and
    14   * limitations under the License.  For additional information regarding
    15   * copyright in this work, please see the NOTICE file in the top level
    16   * directory of this distribution.
    17   */
    18  
    19  package org.apache.roller.weblogger.ui.struts2.core;
    20  
    21  
    22  /**
    23   * form bean use by CreateWeblogForm.
    24   */
         /* 
    P/P   *  Method: void org.apache.roller.weblogger.ui.struts2.core.CreateWeblogBean()
          */
    25  public class CreateWeblogBean {
    26      
    27      private String handle;
    28      private String name;
    29      private String description;
    30      private String emailAddress;
    31      private String locale;
    32      private String timeZone;
    33      private String theme;
    34      
    35      
    36      public String getDescription() {
                 /* 
    P/P           *  Method: String getDescription()
                  * 
                  *  Preconditions:
                  *    init'ed(this.description)
                  * 
                  *  Postconditions:
                  *    return_value == this.description
                  *    init'ed(return_value)
                  */
    37          return description;
    38      }
    39      
    40      public void setDescription(String description) {
                 /* 
    P/P           *  Method: void setDescription(String)
                  * 
                  *  Postconditions:
                  *    this.description == description
                  *    init'ed(this.description)
                  */
    41          this.description = description;
    42      }
    43      
    44      public String getEmailAddress() {
                 /* 
    P/P           *  Method: String getEmailAddress()
                  * 
                  *  Preconditions:
                  *    init'ed(this.emailAddress)
                  * 
                  *  Postconditions:
                  *    return_value == this.emailAddress
                  *    init'ed(return_value)
                  */
    45          return emailAddress;
    46      }
    47      
    48      public void setEmailAddress(String emailAddress) {
                 /* 
    P/P           *  Method: void setEmailAddress(String)
                  * 
                  *  Postconditions:
                  *    this.emailAddress == emailAddress
                  *    init'ed(this.emailAddress)
                  */
    49          this.emailAddress = emailAddress;
    50      }
    51      
    52      public String getHandle() {
                 /* 
    P/P           *  Method: String getHandle()
                  * 
                  *  Preconditions:
                  *    init'ed(this.handle)
                  * 
                  *  Postconditions:
                  *    return_value == this.handle
                  *    init'ed(return_value)
                  */
    53          return handle;
    54      }
    55      
    56      public void setHandle(String handle) {
                 /* 
    P/P           *  Method: void setHandle(String)
                  * 
                  *  Postconditions:
                  *    this.handle == handle
                  *    init'ed(this.handle)
                  */
    57          this.handle = handle;
    58      }
    59      
    60      public String getLocale() {
                 /* 
    P/P           *  Method: String getLocale()
                  * 
                  *  Preconditions:
                  *    init'ed(this.locale)
                  * 
                  *  Postconditions:
                  *    return_value == this.locale
                  *    init'ed(return_value)
                  */
    61          return locale;
    62      }
    63      
    64      public void setLocale(String locale) {
                 /* 
    P/P           *  Method: void setLocale(String)
                  * 
                  *  Postconditions:
                  *    this.locale == locale
                  *    init'ed(this.locale)
                  */
    65          this.locale = locale;
    66      }
    67      
    68      public String getName() {
                 /* 
    P/P           *  Method: String getName()
                  * 
                  *  Preconditions:
                  *    init'ed(this.name)
                  * 
                  *  Postconditions:
                  *    return_value == this.name
                  *    init'ed(return_value)
                  */
    69          return name;
    70      }
    71      
    72      public void setName(String name) {
                 /* 
    P/P           *  Method: void setName(String)
                  * 
                  *  Postconditions:
                  *    this.name == name
                  *    init'ed(this.name)
                  */
    73          this.name = name;
    74      }
    75      
    76      public String getTheme() {
                 /* 
    P/P           *  Method: String getTheme()
                  * 
                  *  Preconditions:
                  *    init'ed(this.theme)
                  * 
                  *  Postconditions:
                  *    return_value == this.theme
                  *    init'ed(return_value)
                  */
    77          return theme;
    78      }
    79      
    80      public void setTheme(String theme) {
                 /* 
    P/P           *  Method: void setTheme(String)
                  * 
                  *  Postconditions:
                  *    this.theme == theme
                  *    init'ed(this.theme)
                  */
    81          this.theme = theme;
    82      }
    83      
    84      public String getTimeZone() {
                 /* 
    P/P           *  Method: String getTimeZone()
                  * 
                  *  Preconditions:
                  *    init'ed(this.timeZone)
                  * 
                  *  Postconditions:
                  *    return_value == this.timeZone
                  *    init'ed(return_value)
                  */
    85          return timeZone;
    86      }
    87      
    88      public void setTimeZone(String timeZone) {
                 /* 
    P/P           *  Method: void setTimeZone(String)
                  * 
                  *  Postconditions:
                  *    this.timeZone == timeZone
                  *    init'ed(this.timeZone)
                  */
    89          this.timeZone = timeZone;
    90      }
    91      
    92  }








SofCheck Inspector Build Version : 2.18479
CreateWeblogBean.java 2009-Jan-02 14:24:50
CreateWeblogBean.class 2009-Sep-04 03:12:45