//# 0 errors, 272 messages
//#
/*
    //#ProfileBean.java:1:1: class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#ProfileBean.java:1:1: method: org.apache.roller.weblogger.ui.struts2.core.ProfileBean.org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init
 * Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  The ASF licenses this file to You
 * under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.  For additional information regarding
 * copyright in this work, please see the NOTICE file in the top level
 * directory of this distribution.
 */

package org.apache.roller.weblogger.ui.struts2.core;

import org.apache.roller.weblogger.pojos.User;


/**
 * A simple bean for managing the form data used by the RegisterForm.
 */
public class ProfileBean {
    //#ProfileBean.java:27: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.org.apache.roller.weblogger.ui.struts2.core.ProfileBean()
    //#input(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.emailAddress
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.fullName
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.id
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.locale
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.password
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.passwordConfirm
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.passwordText
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.screenName
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.timeZone
    //#output(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.userName
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.emailAddress == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.fullName == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.id == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.locale == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.password == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.passwordConfirm == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.passwordText == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.screenName == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.timeZone == null
    //#post(void org.apache.roller.weblogger.ui.struts2.core.ProfileBean()): this.userName == null
    
    private String id = null;
    private String userName = null;
    private String password = null;
    private String screenName = null;
    private String fullName = null;
    private String emailAddress = null;
    private String locale = null;
    private String timeZone = null;
    
    private String passwordText = null;
    private String passwordConfirm = null;
    //#ProfileBean.java:39: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.org.apache.roller.weblogger.ui.struts2.core.ProfileBean()
    
    
    public String getId() {
        return id;
    //#ProfileBean.java:43: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getId()
    //#input(String getId()): this
    //#input(String getId()): this.id
    //#output(String getId()): return_value
    //#pre[2] (String getId()): init'ed(this.id)
    //#post(String getId()): return_value == this.id
    //#post(String getId()): init'ed(return_value)
    //#ProfileBean.java:43: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getId()
    }

    public void setId(String id) {
        this.id = id;
    //#ProfileBean.java:47: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setId(String)
    //#input(void setId(String)): id
    //#input(void setId(String)): this
    //#output(void setId(String)): this.id
    //#post(void setId(String)): this.id == id
    //#post(void setId(String)): init'ed(this.id)
    }
    //#ProfileBean.java:48: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setId(String)

    public String getUserName() {
        return userName;
    //#ProfileBean.java:51: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getUserName()
    //#input(String getUserName()): this
    //#input(String getUserName()): this.userName
    //#output(String getUserName()): return_value
    //#pre[2] (String getUserName()): init'ed(this.userName)
    //#post(String getUserName()): return_value == this.userName
    //#post(String getUserName()): init'ed(return_value)
    //#ProfileBean.java:51: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getUserName()
    }

    public void setUserName(String userName) {
        this.userName = userName;
    //#ProfileBean.java:55: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setUserName(String)
    //#input(void setUserName(String)): this
    //#input(void setUserName(String)): userName
    //#output(void setUserName(String)): this.userName
    //#post(void setUserName(String)): this.userName == userName
    //#post(void setUserName(String)): init'ed(this.userName)
    }
    //#ProfileBean.java:56: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setUserName(String)

    public String getPassword() {
        return password;
    //#ProfileBean.java:59: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getPassword()
    //#input(String getPassword()): this
    //#input(String getPassword()): this.password
    //#output(String getPassword()): return_value
    //#pre[2] (String getPassword()): init'ed(this.password)
    //#post(String getPassword()): return_value == this.password
    //#post(String getPassword()): init'ed(return_value)
    //#ProfileBean.java:59: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getPassword()
    }

    public void setPassword(String password) {
        this.password = password;
    //#ProfileBean.java:63: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setPassword(String)
    //#input(void setPassword(String)): password
    //#input(void setPassword(String)): this
    //#output(void setPassword(String)): this.password
    //#post(void setPassword(String)): this.password == password
    //#post(void setPassword(String)): init'ed(this.password)
    }
    //#ProfileBean.java:64: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setPassword(String)

    public String getScreenName() {
        return screenName;
    //#ProfileBean.java:67: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getScreenName()
    //#input(String getScreenName()): this
    //#input(String getScreenName()): this.screenName
    //#output(String getScreenName()): return_value
    //#pre[2] (String getScreenName()): init'ed(this.screenName)
    //#post(String getScreenName()): return_value == this.screenName
    //#post(String getScreenName()): init'ed(return_value)
    //#ProfileBean.java:67: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getScreenName()
    }

    public void setScreenName(String screenName) {
        this.screenName = screenName;
    //#ProfileBean.java:71: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setScreenName(String)
    //#input(void setScreenName(String)): screenName
    //#input(void setScreenName(String)): this
    //#output(void setScreenName(String)): this.screenName
    //#post(void setScreenName(String)): this.screenName == screenName
    //#post(void setScreenName(String)): init'ed(this.screenName)
    }
    //#ProfileBean.java:72: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setScreenName(String)

    public String getFullName() {
        return fullName;
    //#ProfileBean.java:75: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getFullName()
    //#input(String getFullName()): this
    //#input(String getFullName()): this.fullName
    //#output(String getFullName()): return_value
    //#pre[2] (String getFullName()): init'ed(this.fullName)
    //#post(String getFullName()): return_value == this.fullName
    //#post(String getFullName()): init'ed(return_value)
    //#ProfileBean.java:75: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getFullName()
    }

    public void setFullName(String fullName) {
        this.fullName = fullName;
    //#ProfileBean.java:79: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setFullName(String)
    //#input(void setFullName(String)): fullName
    //#input(void setFullName(String)): this
    //#output(void setFullName(String)): this.fullName
    //#post(void setFullName(String)): this.fullName == fullName
    //#post(void setFullName(String)): init'ed(this.fullName)
    }
    //#ProfileBean.java:80: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setFullName(String)

    public String getEmailAddress() {
        return emailAddress;
    //#ProfileBean.java:83: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getEmailAddress()
    //#input(String getEmailAddress()): this
    //#input(String getEmailAddress()): this.emailAddress
    //#output(String getEmailAddress()): return_value
    //#pre[2] (String getEmailAddress()): init'ed(this.emailAddress)
    //#post(String getEmailAddress()): return_value == this.emailAddress
    //#post(String getEmailAddress()): init'ed(return_value)
    //#ProfileBean.java:83: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getEmailAddress()
    }

    public void setEmailAddress(String emailAddress) {
        this.emailAddress = emailAddress;
    //#ProfileBean.java:87: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setEmailAddress(String)
    //#input(void setEmailAddress(String)): emailAddress
    //#input(void setEmailAddress(String)): this
    //#output(void setEmailAddress(String)): this.emailAddress
    //#post(void setEmailAddress(String)): this.emailAddress == emailAddress
    //#post(void setEmailAddress(String)): init'ed(this.emailAddress)
    }
    //#ProfileBean.java:88: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setEmailAddress(String)

    public String getLocale() {
        return locale;
    //#ProfileBean.java:91: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getLocale()
    //#input(String getLocale()): this
    //#input(String getLocale()): this.locale
    //#output(String getLocale()): return_value
    //#pre[2] (String getLocale()): init'ed(this.locale)
    //#post(String getLocale()): return_value == this.locale
    //#post(String getLocale()): init'ed(return_value)
    //#ProfileBean.java:91: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getLocale()
    }

    public void setLocale(String locale) {
        this.locale = locale;
    //#ProfileBean.java:95: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setLocale(String)
    //#input(void setLocale(String)): locale
    //#input(void setLocale(String)): this
    //#output(void setLocale(String)): this.locale
    //#post(void setLocale(String)): this.locale == locale
    //#post(void setLocale(String)): init'ed(this.locale)
    }
    //#ProfileBean.java:96: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setLocale(String)

    public String getTimeZone() {
        return timeZone;
    //#ProfileBean.java:99: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getTimeZone()
    //#input(String getTimeZone()): this
    //#input(String getTimeZone()): this.timeZone
    //#output(String getTimeZone()): return_value
    //#pre[2] (String getTimeZone()): init'ed(this.timeZone)
    //#post(String getTimeZone()): return_value == this.timeZone
    //#post(String getTimeZone()): init'ed(return_value)
    //#ProfileBean.java:99: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getTimeZone()
    }

    public void setTimeZone(String timeZone) {
        this.timeZone = timeZone;
    //#ProfileBean.java:103: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setTimeZone(String)
    //#input(void setTimeZone(String)): this
    //#input(void setTimeZone(String)): timeZone
    //#output(void setTimeZone(String)): this.timeZone
    //#post(void setTimeZone(String)): this.timeZone == timeZone
    //#post(void setTimeZone(String)): init'ed(this.timeZone)
    }
    //#ProfileBean.java:104: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setTimeZone(String)
    
    public String getPasswordText() {
        return passwordText;
    //#ProfileBean.java:107: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getPasswordText()
    //#input(String getPasswordText()): this
    //#input(String getPasswordText()): this.passwordText
    //#output(String getPasswordText()): return_value
    //#pre[2] (String getPasswordText()): init'ed(this.passwordText)
    //#post(String getPasswordText()): return_value == this.passwordText
    //#post(String getPasswordText()): init'ed(return_value)
    //#ProfileBean.java:107: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getPasswordText()
    }

    public void setPasswordText(String passwordText) {
        this.passwordText = passwordText;
    //#ProfileBean.java:111: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setPasswordText(String)
    //#input(void setPasswordText(String)): passwordText
    //#input(void setPasswordText(String)): this
    //#output(void setPasswordText(String)): this.passwordText
    //#post(void setPasswordText(String)): this.passwordText == passwordText
    //#post(void setPasswordText(String)): init'ed(this.passwordText)
    }
    //#ProfileBean.java:112: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setPasswordText(String)

    public String getPasswordConfirm() {
        return passwordConfirm;
    //#ProfileBean.java:115: method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getPasswordConfirm()
    //#input(String getPasswordConfirm()): this
    //#input(String getPasswordConfirm()): this.passwordConfirm
    //#output(String getPasswordConfirm()): return_value
    //#pre[2] (String getPasswordConfirm()): init'ed(this.passwordConfirm)
    //#post(String getPasswordConfirm()): return_value == this.passwordConfirm
    //#post(String getPasswordConfirm()): init'ed(return_value)
    //#ProfileBean.java:115: end of method: String org.apache.roller.weblogger.ui.struts2.core.ProfileBean.getPasswordConfirm()
    }

    public void setPasswordConfirm(String passwordConfirm) {
        this.passwordConfirm = passwordConfirm;
    //#ProfileBean.java:119: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setPasswordConfirm(String)
    //#input(void setPasswordConfirm(String)): passwordConfirm
    //#input(void setPasswordConfirm(String)): this
    //#output(void setPasswordConfirm(String)): this.passwordConfirm
    //#post(void setPasswordConfirm(String)): this.passwordConfirm == passwordConfirm
    //#post(void setPasswordConfirm(String)): init'ed(this.passwordConfirm)
    }
    //#ProfileBean.java:120: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.setPasswordConfirm(String)
    
    
    public void copyTo(User dataHolder) {
        
        dataHolder.setScreenName(this.screenName);
    //#ProfileBean.java:125: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.copyTo(User)
    //#ProfileBean.java:125: Warning: method not available
    //#    -- call on void org.apache.roller.weblogger.pojos.User:setScreenName(String)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyTo(User)
    //#    unanalyzed callee: void org.apache.roller.weblogger.pojos.User:setScreenName(String)
    //#input(void copyTo(User)): dataHolder
    //#input(void copyTo(User)): this
    //#input(void copyTo(User)): this.emailAddress
    //#input(void copyTo(User)): this.fullName
    //#input(void copyTo(User)): this.locale
    //#input(void copyTo(User)): this.screenName
    //#input(void copyTo(User)): this.timeZone
    //#pre[1] (void copyTo(User)): dataHolder != null
    //#pre[3] (void copyTo(User)): init'ed(this.emailAddress)
    //#pre[4] (void copyTo(User)): init'ed(this.fullName)
    //#pre[5] (void copyTo(User)): init'ed(this.locale)
    //#pre[6] (void copyTo(User)): init'ed(this.screenName)
    //#pre[7] (void copyTo(User)): init'ed(this.timeZone)
        dataHolder.setFullName(this.fullName);
    //#ProfileBean.java:126: Warning: method not available
    //#    -- call on void org.apache.roller.weblogger.pojos.User:setFullName(String)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyTo(User)
    //#    unanalyzed callee: void org.apache.roller.weblogger.pojos.User:setFullName(String)
        dataHolder.setEmailAddress(this.emailAddress);
    //#ProfileBean.java:127: Warning: method not available
    //#    -- call on void org.apache.roller.weblogger.pojos.User:setEmailAddress(String)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyTo(User)
    //#    unanalyzed callee: void org.apache.roller.weblogger.pojos.User:setEmailAddress(String)
        dataHolder.setLocale(this.locale);
    //#ProfileBean.java:128: Warning: method not available
    //#    -- call on void org.apache.roller.weblogger.pojos.User:setLocale(String)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyTo(User)
    //#    unanalyzed callee: void org.apache.roller.weblogger.pojos.User:setLocale(String)
        dataHolder.setTimeZone(this.timeZone);
    //#ProfileBean.java:129: Warning: method not available
    //#    -- call on void org.apache.roller.weblogger.pojos.User:setTimeZone(String)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyTo(User)
    //#    unanalyzed callee: void org.apache.roller.weblogger.pojos.User:setTimeZone(String)
    }
    //#ProfileBean.java:130: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.copyTo(User)
    
    
    public void copyFrom(User dataHolder) {
        
        this.id = dataHolder.getId();
    //#ProfileBean.java:135: method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.copyFrom(User)
    //#ProfileBean.java:135: Warning: method not available
    //#    -- call on String org.apache.roller.weblogger.pojos.User:getId()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyFrom(User)
    //#    unanalyzed callee: String org.apache.roller.weblogger.pojos.User:getId()
    //#input(void copyFrom(User)): dataHolder
    //#input(void copyFrom(User)): this
    //#output(void copyFrom(User)): this.emailAddress
    //#output(void copyFrom(User)): this.fullName
    //#output(void copyFrom(User)): this.id
    //#output(void copyFrom(User)): this.locale
    //#output(void copyFrom(User)): this.password
    //#output(void copyFrom(User)): this.screenName
    //#output(void copyFrom(User)): this.timeZone
    //#output(void copyFrom(User)): this.userName
    //#pre[1] (void copyFrom(User)): dataHolder != null
    //#post(void copyFrom(User)): init'ed(this.emailAddress)
    //#post(void copyFrom(User)): init'ed(this.fullName)
    //#post(void copyFrom(User)): init'ed(this.id)
    //#post(void copyFrom(User)): init'ed(this.locale)
    //#post(void copyFrom(User)): init'ed(this.password)
    //#post(void copyFrom(User)): init'ed(this.screenName)
    //#post(void copyFrom(User)): init'ed(this.timeZone)
    //#post(void copyFrom(User)): init'ed(this.userName)
        this.userName = dataHolder.getUserName();
    //#ProfileBean.java:136: Warning: method not available
    //#    -- call on String org.apache.roller.weblogger.pojos.User:getUserName()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyFrom(User)
    //#    unanalyzed callee: String org.apache.roller.weblogger.pojos.User:getUserName()
        this.password = dataHolder.getPassword();
    //#ProfileBean.java:137: Warning: method not available
    //#    -- call on String org.apache.roller.weblogger.pojos.User:getPassword()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyFrom(User)
    //#    unanalyzed callee: String org.apache.roller.weblogger.pojos.User:getPassword()
        this.screenName = dataHolder.getScreenName();
    //#ProfileBean.java:138: Warning: method not available
    //#    -- call on String org.apache.roller.weblogger.pojos.User:getScreenName()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyFrom(User)
    //#    unanalyzed callee: String org.apache.roller.weblogger.pojos.User:getScreenName()
        this.fullName = dataHolder.getFullName();
    //#ProfileBean.java:139: Warning: method not available
    //#    -- call on String org.apache.roller.weblogger.pojos.User:getFullName()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyFrom(User)
    //#    unanalyzed callee: String org.apache.roller.weblogger.pojos.User:getFullName()
        this.emailAddress = dataHolder.getEmailAddress();
    //#ProfileBean.java:140: Warning: method not available
    //#    -- call on String org.apache.roller.weblogger.pojos.User:getEmailAddress()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyFrom(User)
    //#    unanalyzed callee: String org.apache.roller.weblogger.pojos.User:getEmailAddress()
        this.locale = dataHolder.getLocale();
    //#ProfileBean.java:141: Warning: method not available
    //#    -- call on String org.apache.roller.weblogger.pojos.User:getLocale()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyFrom(User)
    //#    unanalyzed callee: String org.apache.roller.weblogger.pojos.User:getLocale()
        this.timeZone = dataHolder.getTimeZone();
    //#ProfileBean.java:142: Warning: method not available
    //#    -- call on String org.apache.roller.weblogger.pojos.User:getTimeZone()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
    //#    method: void copyFrom(User)
    //#    unanalyzed callee: String org.apache.roller.weblogger.pojos.User:getTimeZone()
    }
    //#ProfileBean.java:143: end of method: void org.apache.roller.weblogger.ui.struts2.core.ProfileBean.copyFrom(User)
    
}
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Descendant_Table[org/apache/roller/weblogger/ui/struts2/core/ProfileBean]
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.copyFrom(Lorg/apache/roller/weblogger/pojos/User;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.copyTo(Lorg/apache/roller/weblogger/pojos/User;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getEmailAddress()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getFullName()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getId()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getLocale()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getPassword()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getPasswordConfirm()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getPasswordText()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getScreenName()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getTimeZone()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getUserName()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setEmailAddress(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setFullName(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setId(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setLocale(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setPassword(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setPasswordConfirm(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setPasswordText(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setScreenName(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setTimeZone(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setUserName(Ljava/lang/String;)V
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Descendant_Table[org/apache/roller/weblogger/ui/struts2/core/ProfileBean] == &__Dispatch_Table
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.copyFrom(Lorg/apache/roller/weblogger/pojos/User;)V == &copyFrom
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.copyTo(Lorg/apache/roller/weblogger/pojos/User;)V == &copyTo
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getEmailAddress()Ljava/lang/String; == &getEmailAddress
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getFullName()Ljava/lang/String; == &getFullName
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getId()Ljava/lang/String; == &getId
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getLocale()Ljava/lang/String; == &getLocale
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getPassword()Ljava/lang/String; == &getPassword
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getPasswordConfirm()Ljava/lang/String; == &getPasswordConfirm
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getPasswordText()Ljava/lang/String; == &getPasswordText
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getScreenName()Ljava/lang/String; == &getScreenName
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getTimeZone()Ljava/lang/String; == &getTimeZone
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.getUserName()Ljava/lang/String; == &getUserName
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setEmailAddress(Ljava/lang/String;)V == &setEmailAddress
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setFullName(Ljava/lang/String;)V == &setFullName
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setId(Ljava/lang/String;)V == &setId
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setLocale(Ljava/lang/String;)V == &setLocale
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setPassword(Ljava/lang/String;)V == &setPassword
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setPasswordConfirm(Ljava/lang/String;)V == &setPasswordConfirm
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setPasswordText(Ljava/lang/String;)V == &setPasswordText
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setScreenName(Ljava/lang/String;)V == &setScreenName
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setTimeZone(Ljava/lang/String;)V == &setTimeZone
    //#post(org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init): __Dispatch_Table.setUserName(Ljava/lang/String;)V == &setUserName
    //#ProfileBean.java:: end of method: org.apache.roller.weblogger.ui.struts2.core.ProfileBean.org.apache.roller.weblogger.ui.struts2.core.ProfileBean__static_init
    //#ProfileBean.java:: end of class: org.apache.roller.weblogger.ui.struts2.core.ProfileBean
