//# 0 errors, 283 messages
//#
/*
    //#EntriesBean.java:1:1: class: org.apache.roller.weblogger.ui.struts2.editor.EntriesBean
    //#EntriesBean.java:1:1: method: org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__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.editor;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import org.apache.commons.lang.StringUtils;
import org.apache.roller.weblogger.util.Utilities;


/**
 * A bean for managing entries query data.
 */
public class EntriesBean {
    
    private String endDateString = null;
    private String startDateString = null;
    private String categoryPath = null;
    private String tagsAsString = null;
    private String text = null;
    private String status = "ALL";
    private String sortBy = "updateTime";
    private int page = 0;
    
    
    public EntriesBean() {
    //#EntriesBean.java:44: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()
    //#input(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this
    //#output(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.categoryPath
    //#output(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.endDateString
    //#output(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.page
    //#output(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.sortBy
    //#output(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.startDateString
    //#output(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.status
    //#output(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.tagsAsString
    //#output(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.text
    //#post(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.categoryPath == null
    //#post(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.endDateString == null
    //#post(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.startDateString == null
    //#post(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.tagsAsString == null
    //#post(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.text == null
    //#post(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.page == 0
    //#post(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.sortBy == &"updateTime"
    //#post(void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()): this.status == &"ALL"
    }
    //#EntriesBean.java:45: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.org.apache.roller.weblogger.ui.struts2.editor.EntriesBean()
    
    // convenience method
    public List<String> getTags() {
        if(getTagsAsString() != null) {
    //#EntriesBean.java:49: method: List org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getTags()
    //#input(List getTags()): __Descendant_Table[org/apache/roller/weblogger/ui/struts2/editor/EntriesBean]
    //#input(List getTags()): __Descendant_Table[others]
    //#input(List getTags()): __Dispatch_Table.getTagsAsString()Ljava/lang/String;
    //#input(List getTags()): this
    //#input(List getTags()): this.__Tag
    //#input(List getTags()): this.tagsAsString
    //#output(List getTags()): return_value
    //#pre[2] (List getTags()): this.__Tag == org/apache/roller/weblogger/ui/struts2/editor/EntriesBean
    //#pre[3] (List getTags()): init'ed(this.tagsAsString)
    //#post(List getTags()): init'ed(return_value)
    //#test_vector(List getTags()): this.tagsAsString: Addr_Set{null}, Inverse{null}
            return Utilities.splitStringAsTags(getTagsAsString());
    //#EntriesBean.java:50: Warning: method not available
    //#    -- call on List org.apache.roller.weblogger.util.Utilities:splitStringAsTags(String)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.editor.EntriesBean
    //#    method: List getTags()
    //#    unanalyzed callee: List org.apache.roller.weblogger.util.Utilities:splitStringAsTags(String)
        } else {
            return null;
    //#EntriesBean.java:52: end of method: List org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getTags()
        }
    }
    
    public Date getStartDate() {
        if(!StringUtils.isEmpty(getStartDateString())) try {
    //#EntriesBean.java:57: method: Date org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getStartDate()
    //#EntriesBean.java:57: Warning: method not available
    //#    -- call on bool org.apache.commons.lang.StringUtils:isEmpty(String)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.editor.EntriesBean
    //#    method: Date getStartDate()
    //#    unanalyzed callee: bool org.apache.commons.lang.StringUtils:isEmpty(String)
    //#input(Date getStartDate()): __Descendant_Table[org/apache/roller/weblogger/ui/struts2/editor/EntriesBean]
    //#input(Date getStartDate()): __Descendant_Table[others]
    //#input(Date getStartDate()): __Dispatch_Table.getStartDateString()Ljava/lang/String;
    //#input(Date getStartDate()): this
    //#input(Date getStartDate()): this.__Tag
    //#input(Date getStartDate()): this.startDateString
    //#output(Date getStartDate()): return_value
    //#pre[2] (Date getStartDate()): this.__Tag == org/apache/roller/weblogger/ui/struts2/editor/EntriesBean
    //#pre[3] (Date getStartDate()): init'ed(this.startDateString)
    //#post(Date getStartDate()): init'ed(return_value)
    //#test_vector(Date getStartDate()): org.apache.commons.lang.StringUtils:isEmpty(...)@57: {1}, {0}
            DateFormat df = new SimpleDateFormat("MM/dd/yy");
            return df.parse(getStartDateString());
        } catch(Exception e) { }
        return null;
    //#EntriesBean.java:61: end of method: Date org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getStartDate()
    }

    public Date getEndDate() {
        if(!StringUtils.isEmpty(getEndDateString())) try {
    //#EntriesBean.java:65: method: Date org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getEndDate()
    //#EntriesBean.java:65: Warning: method not available
    //#    -- call on bool org.apache.commons.lang.StringUtils:isEmpty(String)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.ui.struts2.editor.EntriesBean
    //#    method: Date getEndDate()
    //#    unanalyzed callee: bool org.apache.commons.lang.StringUtils:isEmpty(String)
    //#input(Date getEndDate()): __Descendant_Table[org/apache/roller/weblogger/ui/struts2/editor/EntriesBean]
    //#input(Date getEndDate()): __Descendant_Table[others]
    //#input(Date getEndDate()): __Dispatch_Table.getEndDateString()Ljava/lang/String;
    //#input(Date getEndDate()): this
    //#input(Date getEndDate()): this.__Tag
    //#input(Date getEndDate()): this.endDateString
    //#output(Date getEndDate()): return_value
    //#pre[2] (Date getEndDate()): this.__Tag == org/apache/roller/weblogger/ui/struts2/editor/EntriesBean
    //#pre[3] (Date getEndDate()): init'ed(this.endDateString)
    //#post(Date getEndDate()): init'ed(return_value)
    //#test_vector(Date getEndDate()): org.apache.commons.lang.StringUtils:isEmpty(...)@65: {1}, {0}
            DateFormat df = new SimpleDateFormat("MM/dd/yy");
            return df.parse(getEndDateString());
        } catch(Exception e) { }
        return null;
    //#EntriesBean.java:69: end of method: Date org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getEndDate()
    }
    
    
    public String getCategoryPath() {
        return categoryPath;
    //#EntriesBean.java:74: method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getCategoryPath()
    //#input(String getCategoryPath()): this
    //#input(String getCategoryPath()): this.categoryPath
    //#output(String getCategoryPath()): return_value
    //#pre[2] (String getCategoryPath()): init'ed(this.categoryPath)
    //#post(String getCategoryPath()): return_value == this.categoryPath
    //#post(String getCategoryPath()): init'ed(return_value)
    //#EntriesBean.java:74: end of method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getCategoryPath()
    }
    
    public void setCategoryPath(String categoryId) {
        this.categoryPath = categoryId;
    //#EntriesBean.java:78: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setCategoryPath(String)
    //#input(void setCategoryPath(String)): categoryId
    //#input(void setCategoryPath(String)): this
    //#output(void setCategoryPath(String)): this.categoryPath
    //#post(void setCategoryPath(String)): this.categoryPath == categoryId
    //#post(void setCategoryPath(String)): init'ed(this.categoryPath)
    }
    //#EntriesBean.java:79: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setCategoryPath(String)
    
    public String getTagsAsString() {
        return tagsAsString;
    //#EntriesBean.java:82: method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getTagsAsString()
    //#input(String getTagsAsString()): this
    //#input(String getTagsAsString()): this.tagsAsString
    //#output(String getTagsAsString()): return_value
    //#pre[2] (String getTagsAsString()): init'ed(this.tagsAsString)
    //#post(String getTagsAsString()): return_value == this.tagsAsString
    //#post(String getTagsAsString()): init'ed(return_value)
    //#EntriesBean.java:82: end of method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getTagsAsString()
    }
    
    public void setTagsAsString(String tags) {
        this.tagsAsString = tags;
    //#EntriesBean.java:86: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setTagsAsString(String)
    //#input(void setTagsAsString(String)): tags
    //#input(void setTagsAsString(String)): this
    //#output(void setTagsAsString(String)): this.tagsAsString
    //#post(void setTagsAsString(String)): this.tagsAsString == tags
    //#post(void setTagsAsString(String)): init'ed(this.tagsAsString)
    }
    //#EntriesBean.java:87: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setTagsAsString(String)
    
    public String getText() {
        return text;
    //#EntriesBean.java:90: method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getText()
    //#input(String getText()): this
    //#input(String getText()): this.text
    //#output(String getText()): return_value
    //#pre[2] (String getText()): init'ed(this.text)
    //#post(String getText()): return_value == this.text
    //#post(String getText()): init'ed(return_value)
    //#EntriesBean.java:90: end of method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getText()
    }
    
    public void setText(String text) {
        this.text = text;
    //#EntriesBean.java:94: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setText(String)
    //#input(void setText(String)): text
    //#input(void setText(String)): this
    //#output(void setText(String)): this.text
    //#post(void setText(String)): this.text == text
    //#post(void setText(String)): init'ed(this.text)
    }
    //#EntriesBean.java:95: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setText(String)
    
    public String getStatus() {
        return status;
    //#EntriesBean.java:98: method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getStatus()
    //#input(String getStatus()): this
    //#input(String getStatus()): this.status
    //#output(String getStatus()): return_value
    //#pre[2] (String getStatus()): init'ed(this.status)
    //#post(String getStatus()): return_value == this.status
    //#post(String getStatus()): init'ed(return_value)
    //#EntriesBean.java:98: end of method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getStatus()
    }
    
    public void setStatus(String status) {
        this.status = status;
    //#EntriesBean.java:102: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setStatus(String)
    //#input(void setStatus(String)): status
    //#input(void setStatus(String)): this
    //#output(void setStatus(String)): this.status
    //#post(void setStatus(String)): this.status == status
    //#post(void setStatus(String)): init'ed(this.status)
    }
    //#EntriesBean.java:103: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setStatus(String)
    
    public String getSortBy() {
        return sortBy;
    //#EntriesBean.java:106: method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getSortBy()
    //#input(String getSortBy()): this
    //#input(String getSortBy()): this.sortBy
    //#output(String getSortBy()): return_value
    //#pre[2] (String getSortBy()): init'ed(this.sortBy)
    //#post(String getSortBy()): return_value == this.sortBy
    //#post(String getSortBy()): init'ed(return_value)
    //#EntriesBean.java:106: end of method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getSortBy()
    }
    
    public void setSortBy(String sortBy) {
        this.sortBy = sortBy;
    //#EntriesBean.java:110: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setSortBy(String)
    //#input(void setSortBy(String)): sortBy
    //#input(void setSortBy(String)): this
    //#output(void setSortBy(String)): this.sortBy
    //#post(void setSortBy(String)): this.sortBy == sortBy
    //#post(void setSortBy(String)): init'ed(this.sortBy)
    }
    //#EntriesBean.java:111: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setSortBy(String)
    
    public int getPage() {
        return page;
    //#EntriesBean.java:114: method: int org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getPage()
    //#input(int getPage()): this
    //#input(int getPage()): this.page
    //#output(int getPage()): return_value
    //#pre[2] (int getPage()): init'ed(this.page)
    //#post(int getPage()): return_value == this.page
    //#post(int getPage()): init'ed(return_value)
    //#EntriesBean.java:114: end of method: int org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getPage()
    }

    public void setPage(int page) {
        this.page = page;
    //#EntriesBean.java:118: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setPage(int)
    //#input(void setPage(int)): page
    //#input(void setPage(int)): this
    //#output(void setPage(int)): this.page
    //#post(void setPage(int)): this.page == page
    //#post(void setPage(int)): init'ed(this.page)
    }
    //#EntriesBean.java:119: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setPage(int)
    
    
    public String toString() {
        StringBuffer buf = new StringBuffer();
    //#EntriesBean.java:123: method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.toString()
    //#input(String toString()): "&#10;"._tainted
    //#input(String toString()): "catPath = "._tainted
    //#input(String toString()): "endDate = "._tainted
    //#input(String toString()): "page = "._tainted
    //#input(String toString()): "sortBy = "._tainted
    //#input(String toString()): "startDate = "._tainted
    //#input(String toString()): "status = "._tainted
    //#input(String toString()): "tags = "._tainted
    //#input(String toString()): "text = "._tainted
    //#input(String toString()): __Descendant_Table[org/apache/roller/weblogger/ui/struts2/editor/EntriesBean]
    //#input(String toString()): __Descendant_Table[others]
    //#input(String toString()): __Dispatch_Table.getCategoryPath()Ljava/lang/String;
    //#input(String toString()): __Dispatch_Table.getEndDate()Ljava/util/Date;
    //#input(String toString()): __Dispatch_Table.getEndDateString()Ljava/lang/String;
    //#input(String toString()): __Dispatch_Table.getPage()I
    //#input(String toString()): __Dispatch_Table.getSortBy()Ljava/lang/String;
    //#input(String toString()): __Dispatch_Table.getStartDate()Ljava/util/Date;
    //#input(String toString()): __Dispatch_Table.getStartDateString()Ljava/lang/String;
    //#input(String toString()): __Dispatch_Table.getStatus()Ljava/lang/String;
    //#input(String toString()): __Dispatch_Table.getTagsAsString()Ljava/lang/String;
    //#input(String toString()): __Dispatch_Table.getText()Ljava/lang/String;
    //#input(String toString()): this
    //#input(String toString()): this.__Tag
    //#input(String toString()): this.categoryPath
    //#input(String toString()): this.categoryPath._tainted
    //#input(String toString()): this.endDateString
    //#input(String toString()): this.page
    //#input(String toString()): this.sortBy
    //#input(String toString()): this.sortBy._tainted
    //#input(String toString()): this.startDateString
    //#input(String toString()): this.status
    //#input(String toString()): this.status._tainted
    //#input(String toString()): this.tagsAsString
    //#input(String toString()): this.tagsAsString._tainted
    //#input(String toString()): this.text
    //#input(String toString()): this.text._tainted
    //#output(String toString()): java.lang.StringBuffer:toString(...)._tainted
    //#output(String toString()): return_value
    //#new obj(String toString()): java.lang.StringBuffer:toString(...)
    //#pre[2] (String toString()): this.__Tag == org/apache/roller/weblogger/ui/struts2/editor/EntriesBean
    //#pre[3] (String toString()): init'ed(this.categoryPath)
    //#pre[5] (String toString()): init'ed(this.endDateString)
    //#pre[6] (String toString()): init'ed(this.page)
    //#pre[7] (String toString()): init'ed(this.sortBy)
    //#pre[9] (String toString()): init'ed(this.startDateString)
    //#pre[10] (String toString()): init'ed(this.status)
    //#pre[12] (String toString()): init'ed(this.tagsAsString)
    //#pre[14] (String toString()): init'ed(this.text)
    //#post(String toString()): init'ed(java.lang.StringBuffer:toString(...)._tainted)
    //#post(String toString()): return_value == &java.lang.StringBuffer:toString(...)
    //#unanalyzed(String toString()): Effects-of-calling:org.apache.commons.lang.StringUtils:isEmpty
    //#unanalyzed(String toString()): Effects-of-calling:java.text.SimpleDateFormat
    //#unanalyzed(String toString()): Effects-of-calling:java.text.DateFormat:parse
    //#unanalyzed(String toString()): Effects-of-calling:java.lang.Throwable:__curr_excep_obj
        
        buf.append("startDate = ").append(getStartDate()).append("\n");
        buf.append("endDate = ").append(getEndDate()).append("\n");
        buf.append("status = ").append(getStatus()).append("\n");
        buf.append("sortBy = ").append(getSortBy()).append("\n");
        buf.append("catPath = ").append(getCategoryPath()).append("\n");
        buf.append("tags = ").append(getTagsAsString()).append("\n");
        buf.append("text = ").append(getText()).append("\n");
        buf.append("page = ").append(getPage()).append("\n");
        
        return buf.toString();
    //#EntriesBean.java:134: end of method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.toString()
    }

    public String getEndDateString() {
        return endDateString;
    //#EntriesBean.java:138: method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getEndDateString()
    //#input(String getEndDateString()): this
    //#input(String getEndDateString()): this.endDateString
    //#output(String getEndDateString()): return_value
    //#pre[2] (String getEndDateString()): init'ed(this.endDateString)
    //#post(String getEndDateString()): return_value == this.endDateString
    //#post(String getEndDateString()): init'ed(return_value)
    //#EntriesBean.java:138: end of method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getEndDateString()
    }

    public void setEndDateString(String endDateString) {
        this.endDateString = endDateString;
    //#EntriesBean.java:142: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setEndDateString(String)
    //#input(void setEndDateString(String)): endDateString
    //#input(void setEndDateString(String)): this
    //#output(void setEndDateString(String)): this.endDateString
    //#post(void setEndDateString(String)): this.endDateString == endDateString
    //#post(void setEndDateString(String)): init'ed(this.endDateString)
    }
    //#EntriesBean.java:143: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setEndDateString(String)

    public String getStartDateString() {
        return startDateString;
    //#EntriesBean.java:146: method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getStartDateString()
    //#input(String getStartDateString()): this
    //#input(String getStartDateString()): this.startDateString
    //#output(String getStartDateString()): return_value
    //#pre[2] (String getStartDateString()): init'ed(this.startDateString)
    //#post(String getStartDateString()): return_value == this.startDateString
    //#post(String getStartDateString()): init'ed(return_value)
    //#EntriesBean.java:146: end of method: String org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.getStartDateString()
    }

    public void setStartDateString(String startDateString) {
        this.startDateString = startDateString;
    //#EntriesBean.java:150: method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setStartDateString(String)
    //#input(void setStartDateString(String)): startDateString
    //#input(void setStartDateString(String)): this
    //#output(void setStartDateString(String)): this.startDateString
    //#post(void setStartDateString(String)): this.startDateString == startDateString
    //#post(void setStartDateString(String)): init'ed(this.startDateString)
    }
    //#EntriesBean.java:151: end of method: void org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.setStartDateString(String)
    
}
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Descendant_Table[org/apache/roller/weblogger/ui/struts2/editor/EntriesBean]
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getCategoryPath()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getEndDate()Ljava/util/Date;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getEndDateString()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getPage()I
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getSortBy()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getStartDate()Ljava/util/Date;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getStartDateString()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getStatus()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getTags()Ljava/util/List;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getTagsAsString()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getText()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setCategoryPath(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setEndDateString(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setPage(I)V
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setSortBy(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setStartDateString(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setStatus(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setTagsAsString(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setText(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.toString()Ljava/lang/String;
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Descendant_Table[org/apache/roller/weblogger/ui/struts2/editor/EntriesBean] == &__Dispatch_Table
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getCategoryPath()Ljava/lang/String; == &getCategoryPath
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getEndDate()Ljava/util/Date; == &getEndDate
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getEndDateString()Ljava/lang/String; == &getEndDateString
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getPage()I == &getPage
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getSortBy()Ljava/lang/String; == &getSortBy
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getStartDate()Ljava/util/Date; == &getStartDate
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getStartDateString()Ljava/lang/String; == &getStartDateString
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getStatus()Ljava/lang/String; == &getStatus
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getTags()Ljava/util/List; == &getTags
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getTagsAsString()Ljava/lang/String; == &getTagsAsString
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.getText()Ljava/lang/String; == &getText
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setCategoryPath(Ljava/lang/String;)V == &setCategoryPath
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setEndDateString(Ljava/lang/String;)V == &setEndDateString
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setPage(I)V == &setPage
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setSortBy(Ljava/lang/String;)V == &setSortBy
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setStartDateString(Ljava/lang/String;)V == &setStartDateString
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setStatus(Ljava/lang/String;)V == &setStatus
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setTagsAsString(Ljava/lang/String;)V == &setTagsAsString
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.setText(Ljava/lang/String;)V == &setText
    //#post(org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init): __Dispatch_Table.toString()Ljava/lang/String; == &toString
    //#EntriesBean.java:: end of method: org.apache.roller.weblogger.ui.struts2.editor.EntriesBean.org.apache.roller.weblogger.ui.struts2.editor.EntriesBean__static_init
    //#EntriesBean.java:: end of class: org.apache.roller.weblogger.ui.struts2.editor.EntriesBean
