//# 0 errors, 224 messages
//#
/*
    //#StatCount.java:1:1: class: org.apache.roller.weblogger.pojos.StatCount
    //#StatCount.java:1:1: method: org.apache.roller.weblogger.pojos.StatCount.org.apache.roller.weblogger.pojos.StatCount__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.pojos;

import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;

/**
 * Represents a statistical count.
 */
public class StatCount { 
    
    /** Id of the subject of the statistic */
    private String subjectId;
    
    /** Short name of the subject of the statistic */
    private String subjectNameShort;
    
    /** Long name of the subject of the statistic */
    private String subjectNameLong; 
    
    /** I18N key that describes the type of statistic */
    private String typeKey;
    
    /** The statistical count */    
    private long count;
    
    /** Weblog handle of weblog that stat is associated with, or null if none */
    private String weblogHandle = null;

    public StatCount(String subjectId, String subjectNameShort, String subjectNameLong, String typeKey, long count) {
    //#StatCount.java:46: method: void org.apache.roller.weblogger.pojos.StatCount.org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): __Descendant_Table[org/apache/roller/weblogger/pojos/StatCount]
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): __Descendant_Table[others]
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): __Dispatch_Table.setCount(J)V
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): __Dispatch_Table.setSubjectId(Ljava/lang/String;)V
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): __Dispatch_Table.setSubjectNameLong(Ljava/lang/String;)V
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): __Dispatch_Table.setSubjectNameShort(Ljava/lang/String;)V
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): __Dispatch_Table.setTypeKey(Ljava/lang/String;)V
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): count
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): subjectId
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): subjectNameLong
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): subjectNameShort
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.__Tag
    //#input(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): typeKey
    //#output(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.count
    //#output(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.subjectId
    //#output(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.subjectNameLong
    //#output(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.subjectNameShort
    //#output(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.typeKey
    //#output(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.weblogHandle
    //#pre[6] (void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.__Tag == org/apache/roller/weblogger/pojos/StatCount
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.count == count
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): init'ed(this.count)
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.subjectId == subjectId
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): init'ed(this.subjectId)
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.subjectNameLong == subjectNameLong
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): init'ed(this.subjectNameLong)
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.subjectNameShort == subjectNameShort
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): init'ed(this.subjectNameShort)
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.typeKey == typeKey
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): init'ed(this.typeKey)
    //#post(void org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)): this.weblogHandle == null
        this.setSubjectId(subjectId);
        this.setSubjectNameShort(subjectNameShort);
        this.setSubjectNameLong(subjectNameLong);
        this.setTypeKey(typeKey);
        this.setCount(count);
    } 
    //#StatCount.java:52: end of method: void org.apache.roller.weblogger.pojos.StatCount.org.apache.roller.weblogger.pojos.StatCount(String, String, String, String, long)
    
    public String getTypeKey() {
        return typeKey;
    //#StatCount.java:55: method: String org.apache.roller.weblogger.pojos.StatCount.getTypeKey()
    //#input(String getTypeKey()): this
    //#input(String getTypeKey()): this.typeKey
    //#output(String getTypeKey()): return_value
    //#pre[2] (String getTypeKey()): init'ed(this.typeKey)
    //#post(String getTypeKey()): return_value == this.typeKey
    //#post(String getTypeKey()): init'ed(return_value)
    //#StatCount.java:55: end of method: String org.apache.roller.weblogger.pojos.StatCount.getTypeKey()
    }
    
    public void setTypeKey(String typeKey) {
        this.typeKey = typeKey;
    //#StatCount.java:59: method: void org.apache.roller.weblogger.pojos.StatCount.setTypeKey(String)
    //#input(void setTypeKey(String)): this
    //#input(void setTypeKey(String)): typeKey
    //#output(void setTypeKey(String)): this.typeKey
    //#post(void setTypeKey(String)): this.typeKey == typeKey
    //#post(void setTypeKey(String)): init'ed(this.typeKey)
    }
    //#StatCount.java:60: end of method: void org.apache.roller.weblogger.pojos.StatCount.setTypeKey(String)
    
    public long getCount() {
        return count;
    //#StatCount.java:63: method: long org.apache.roller.weblogger.pojos.StatCount.getCount()
    //#input(long getCount()): this
    //#input(long getCount()): this.count
    //#output(long getCount()): return_value
    //#pre[2] (long getCount()): init'ed(this.count)
    //#post(long getCount()): return_value == this.count
    //#post(long getCount()): init'ed(return_value)
    //#StatCount.java:63: end of method: long org.apache.roller.weblogger.pojos.StatCount.getCount()
    }
    
    public void setCount(long count) {
        this.count = count;
    //#StatCount.java:67: method: void org.apache.roller.weblogger.pojos.StatCount.setCount(long)
    //#input(void setCount(long)): count
    //#input(void setCount(long)): this
    //#output(void setCount(long)): this.count
    //#post(void setCount(long)): this.count == count
    //#post(void setCount(long)): init'ed(this.count)
    }
    //#StatCount.java:68: end of method: void org.apache.roller.weblogger.pojos.StatCount.setCount(long)
    
    public String getSubjectId() {
        return subjectId;
    //#StatCount.java:71: method: String org.apache.roller.weblogger.pojos.StatCount.getSubjectId()
    //#input(String getSubjectId()): this
    //#input(String getSubjectId()): this.subjectId
    //#output(String getSubjectId()): return_value
    //#pre[2] (String getSubjectId()): init'ed(this.subjectId)
    //#post(String getSubjectId()): return_value == this.subjectId
    //#post(String getSubjectId()): init'ed(return_value)
    //#StatCount.java:71: end of method: String org.apache.roller.weblogger.pojos.StatCount.getSubjectId()
    }
    
    public void setSubjectId(String subjectId) {
        this.subjectId = subjectId;
    //#StatCount.java:75: method: void org.apache.roller.weblogger.pojos.StatCount.setSubjectId(String)
    //#input(void setSubjectId(String)): subjectId
    //#input(void setSubjectId(String)): this
    //#output(void setSubjectId(String)): this.subjectId
    //#post(void setSubjectId(String)): this.subjectId == subjectId
    //#post(void setSubjectId(String)): init'ed(this.subjectId)
    }
    //#StatCount.java:76: end of method: void org.apache.roller.weblogger.pojos.StatCount.setSubjectId(String)
    
    public String getSubjectNameShort() {
        return subjectNameShort;
    //#StatCount.java:79: method: String org.apache.roller.weblogger.pojos.StatCount.getSubjectNameShort()
    //#input(String getSubjectNameShort()): this
    //#input(String getSubjectNameShort()): this.subjectNameShort
    //#output(String getSubjectNameShort()): return_value
    //#pre[2] (String getSubjectNameShort()): init'ed(this.subjectNameShort)
    //#post(String getSubjectNameShort()): return_value == this.subjectNameShort
    //#post(String getSubjectNameShort()): init'ed(return_value)
    //#StatCount.java:79: end of method: String org.apache.roller.weblogger.pojos.StatCount.getSubjectNameShort()
    }
    
    public void setSubjectNameShort(String subjectNameShort) {
        this.subjectNameShort = subjectNameShort;
    //#StatCount.java:83: method: void org.apache.roller.weblogger.pojos.StatCount.setSubjectNameShort(String)
    //#input(void setSubjectNameShort(String)): subjectNameShort
    //#input(void setSubjectNameShort(String)): this
    //#output(void setSubjectNameShort(String)): this.subjectNameShort
    //#post(void setSubjectNameShort(String)): this.subjectNameShort == subjectNameShort
    //#post(void setSubjectNameShort(String)): init'ed(this.subjectNameShort)
    }
    //#StatCount.java:84: end of method: void org.apache.roller.weblogger.pojos.StatCount.setSubjectNameShort(String)
    
    public String getSubjectNameLong() {
        return subjectNameLong;
    //#StatCount.java:87: method: String org.apache.roller.weblogger.pojos.StatCount.getSubjectNameLong()
    //#input(String getSubjectNameLong()): this
    //#input(String getSubjectNameLong()): this.subjectNameLong
    //#output(String getSubjectNameLong()): return_value
    //#pre[2] (String getSubjectNameLong()): init'ed(this.subjectNameLong)
    //#post(String getSubjectNameLong()): return_value == this.subjectNameLong
    //#post(String getSubjectNameLong()): init'ed(return_value)
    //#StatCount.java:87: end of method: String org.apache.roller.weblogger.pojos.StatCount.getSubjectNameLong()
    }
    
    public void setSubjectNameLong(String subjectNameLong) {
        this.subjectNameLong = subjectNameLong;
    //#StatCount.java:91: method: void org.apache.roller.weblogger.pojos.StatCount.setSubjectNameLong(String)
    //#input(void setSubjectNameLong(String)): subjectNameLong
    //#input(void setSubjectNameLong(String)): this
    //#output(void setSubjectNameLong(String)): this.subjectNameLong
    //#post(void setSubjectNameLong(String)): this.subjectNameLong == subjectNameLong
    //#post(void setSubjectNameLong(String)): init'ed(this.subjectNameLong)
    }
    //#StatCount.java:92: end of method: void org.apache.roller.weblogger.pojos.StatCount.setSubjectNameLong(String)

    public String getWeblogHandle() {
        return weblogHandle;
    //#StatCount.java:95: method: String org.apache.roller.weblogger.pojos.StatCount.getWeblogHandle()
    //#input(String getWeblogHandle()): this
    //#input(String getWeblogHandle()): this.weblogHandle
    //#output(String getWeblogHandle()): return_value
    //#pre[2] (String getWeblogHandle()): init'ed(this.weblogHandle)
    //#post(String getWeblogHandle()): return_value == this.weblogHandle
    //#post(String getWeblogHandle()): init'ed(return_value)
    //#StatCount.java:95: end of method: String org.apache.roller.weblogger.pojos.StatCount.getWeblogHandle()
    }

    public void setWeblogHandle(String weblogHandle) {
        this.weblogHandle = weblogHandle;
    //#StatCount.java:99: method: void org.apache.roller.weblogger.pojos.StatCount.setWeblogHandle(String)
    //#input(void setWeblogHandle(String)): this
    //#input(void setWeblogHandle(String)): weblogHandle
    //#output(void setWeblogHandle(String)): this.weblogHandle
    //#post(void setWeblogHandle(String)): this.weblogHandle == weblogHandle
    //#post(void setWeblogHandle(String)): init'ed(this.weblogHandle)
    }
    //#StatCount.java:100: end of method: void org.apache.roller.weblogger.pojos.StatCount.setWeblogHandle(String)
    
    //------------------------------------------------------- Good citizenship

    public String toString() {
        StringBuffer buf = new StringBuffer();
    //#StatCount.java:105: method: String org.apache.roller.weblogger.pojos.StatCount.toString()
    //#input(String toString()): ", "._tainted
    //#input(String toString()): "{"._tainted
    //#input(String toString()): "}"._tainted
    //#input(String toString()): this
    //#input(String toString()): this.count
    //#input(String toString()): this.weblogHandle
    //#input(String toString()): this.weblogHandle._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()): init'ed(this.count)
    //#pre[3] (String toString()): init'ed(this.weblogHandle)
    //#post(String toString()): java.lang.StringBuffer:toString(...)._tainted == this.weblogHandle._tainted
    //#post(String toString()): init'ed(java.lang.StringBuffer:toString(...)._tainted)
    //#post(String toString()): return_value == &java.lang.StringBuffer:toString(...)
        buf.append("{");
        buf.append(this.weblogHandle);
        buf.append(", ").append(this.count);
        buf.append("}");
        return buf.toString();
    //#StatCount.java:110: end of method: String org.apache.roller.weblogger.pojos.StatCount.toString()
    }

    public boolean equals(Object other) {
        if (other == this) return true;
    //#StatCount.java:114: method: bool org.apache.roller.weblogger.pojos.StatCount.equals(Object)
    //#input(bool equals(Object)): __Descendant_Table[org/apache/roller/weblogger/pojos/StatCount]
    //#input(bool equals(Object)): __Descendant_Table[others]
    //#input(bool equals(Object)): __Dispatch_Table.getSubjectId()Ljava/lang/String;
    //#input(bool equals(Object)): __Dispatch_Table.getTypeKey()Ljava/lang/String;
    //#input(bool equals(Object)): other
    //#input(bool equals(Object)): other.__Tag
    //#input(bool equals(Object)): other.subjectId
    //#input(bool equals(Object)): other.typeKey
    //#input(bool equals(Object)): this
    //#input(bool equals(Object)): this.__Tag
    //#input(bool equals(Object)): this.subjectId
    //#input(bool equals(Object)): this.typeKey
    //#output(bool equals(Object)): return_value
    //#pre[6] (bool equals(Object)): (soft) init'ed(other.subjectId)
    //#pre[7] (bool equals(Object)): (soft) init'ed(other.typeKey)
    //#pre[9] (bool equals(Object)): (soft) this.__Tag == org/apache/roller/weblogger/pojos/StatCount
    //#pre[10] (bool equals(Object)): (soft) init'ed(this.subjectId)
    //#pre[11] (bool equals(Object)): (soft) init'ed(this.typeKey)
    //#presumption(bool equals(Object)): org.apache.commons.lang.builder.EqualsBuilder:append(...)@117 != null
    //#presumption(bool equals(Object)): org.apache.commons.lang.builder.EqualsBuilder:append(...)@117 != null
    //#post(bool equals(Object)): init'ed(return_value)
    //#test_vector(bool equals(Object)): other == this: {0}, {1}
        if (other instanceof StatCount != true) return false;
        StatCount o = (StatCount)other;
        return new EqualsBuilder()
    //#StatCount.java:117: Warning: method not available
    //#    -- call on void org.apache.commons.lang.builder.EqualsBuilder()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.pojos.StatCount
    //#    method: bool equals(Object)
    //#    unanalyzed callee: void org.apache.commons.lang.builder.EqualsBuilder()
    //#StatCount.java:117: Warning: method not available
    //#    -- call on EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder:append(Object, Object)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.pojos.StatCount
    //#    method: bool equals(Object)
    //#    unanalyzed callee: EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder:append(Object, Object)
    //#StatCount.java:117: Warning: method not available
    //#    -- call on bool org.apache.commons.lang.builder.EqualsBuilder:isEquals()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.pojos.StatCount
    //#    method: bool equals(Object)
    //#    unanalyzed callee: bool org.apache.commons.lang.builder.EqualsBuilder:isEquals()
    //#StatCount.java:117: end of method: bool org.apache.roller.weblogger.pojos.StatCount.equals(Object)
            .append(getSubjectId(), o.getSubjectId()) 
            .append(getTypeKey(), o.getTypeKey()) 
            .isEquals();
    }
    
    public int hashCode() { 
        return new HashCodeBuilder()
    //#StatCount.java:124: method: int org.apache.roller.weblogger.pojos.StatCount.hashCode()
    //#StatCount.java:124: Warning: method not available
    //#    -- call on void org.apache.commons.lang.builder.HashCodeBuilder()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.pojos.StatCount
    //#    method: int hashCode()
    //#    unanalyzed callee: void org.apache.commons.lang.builder.HashCodeBuilder()
    //#StatCount.java:124: Warning: method not available
    //#    -- call on HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder:append(Object)
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.pojos.StatCount
    //#    method: int hashCode()
    //#    unanalyzed callee: HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder:append(Object)
    //#StatCount.java:124: Warning: method not available
    //#    -- call on int org.apache.commons.lang.builder.HashCodeBuilder:toHashCode()
    //#    severity: INFORMATIONAL
    //#    class: org.apache.roller.weblogger.pojos.StatCount
    //#    method: int hashCode()
    //#    unanalyzed callee: int org.apache.commons.lang.builder.HashCodeBuilder:toHashCode()
    //#input(int hashCode()): __Descendant_Table[org/apache/roller/weblogger/pojos/StatCount]
    //#input(int hashCode()): __Descendant_Table[others]
    //#input(int hashCode()): __Dispatch_Table.getSubjectId()Ljava/lang/String;
    //#input(int hashCode()): __Dispatch_Table.getTypeKey()Ljava/lang/String;
    //#input(int hashCode()): this
    //#input(int hashCode()): this.__Tag
    //#input(int hashCode()): this.subjectId
    //#input(int hashCode()): this.typeKey
    //#output(int hashCode()): return_value
    //#pre[2] (int hashCode()): this.__Tag == org/apache/roller/weblogger/pojos/StatCount
    //#pre[3] (int hashCode()): init'ed(this.subjectId)
    //#pre[4] (int hashCode()): init'ed(this.typeKey)
    //#presumption(int hashCode()): org.apache.commons.lang.builder.HashCodeBuilder:append(...)@124 != null
    //#presumption(int hashCode()): org.apache.commons.lang.builder.HashCodeBuilder:append(...)@124 != null
    //#post(int hashCode()): init'ed(return_value)
    //#StatCount.java:124: end of method: int org.apache.roller.weblogger.pojos.StatCount.hashCode()
            .append(getSubjectId())
            .append(getTypeKey())
            .toHashCode();
    }
}
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Descendant_Table[org/apache/roller/weblogger/pojos/StatCount]
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.equals(Ljava/lang/Object;)Z
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getCount()J
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getSubjectId()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getSubjectNameLong()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getSubjectNameShort()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getTypeKey()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getWeblogHandle()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.hashCode()I
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setCount(J)V
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setSubjectId(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setSubjectNameLong(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setSubjectNameShort(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setTypeKey(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setWeblogHandle(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.toString()Ljava/lang/String;
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Descendant_Table[org/apache/roller/weblogger/pojos/StatCount] == &__Dispatch_Table
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.equals(Ljava/lang/Object;)Z == &equals
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getCount()J == &getCount
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getSubjectId()Ljava/lang/String; == &getSubjectId
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getSubjectNameLong()Ljava/lang/String; == &getSubjectNameLong
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getSubjectNameShort()Ljava/lang/String; == &getSubjectNameShort
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getTypeKey()Ljava/lang/String; == &getTypeKey
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.getWeblogHandle()Ljava/lang/String; == &getWeblogHandle
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.hashCode()I == &hashCode
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setCount(J)V == &setCount
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setSubjectId(Ljava/lang/String;)V == &setSubjectId
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setSubjectNameLong(Ljava/lang/String;)V == &setSubjectNameLong
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setSubjectNameShort(Ljava/lang/String;)V == &setSubjectNameShort
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setTypeKey(Ljava/lang/String;)V == &setTypeKey
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.setWeblogHandle(Ljava/lang/String;)V == &setWeblogHandle
    //#post(org.apache.roller.weblogger.pojos.StatCount__static_init): __Dispatch_Table.toString()Ljava/lang/String; == &toString
    //#StatCount.java:: end of method: org.apache.roller.weblogger.pojos.StatCount.org.apache.roller.weblogger.pojos.StatCount__static_init
    //#StatCount.java:: end of class: org.apache.roller.weblogger.pojos.StatCount
