//# 0 errors, 25 messages
//#
/*
    //#WeblogTheme.java:1:1: class: org.apache.roller.weblogger.pojos.WeblogTheme
    //#WeblogTheme.java:1:1: method: org.apache.roller.weblogger.pojos.WeblogTheme.org.apache.roller.weblogger.pojos.WeblogTheme__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 java.io.Serializable;


/**
 * A Theme which is specifically tied to a given weblog.
 *
 * A WeblogTheme is what is used throughout the rendering process to do the
 * rendering for a given weblog design.
 */
public abstract class WeblogTheme implements Theme, Serializable {
    
    // this is the name that will be used to identify a user customized theme
    public static final String CUSTOM = "custom";
    
    protected Weblog weblog = null;
    
    
    public WeblogTheme(Weblog weblog) {
    //#WeblogTheme.java:38: method: void org.apache.roller.weblogger.pojos.WeblogTheme.org.apache.roller.weblogger.pojos.WeblogTheme(Weblog)
    //#input(void org.apache.roller.weblogger.pojos.WeblogTheme(Weblog)): this
    //#input(void org.apache.roller.weblogger.pojos.WeblogTheme(Weblog)): weblog
    //#output(void org.apache.roller.weblogger.pojos.WeblogTheme(Weblog)): this.weblog
    //#post(void org.apache.roller.weblogger.pojos.WeblogTheme(Weblog)): this.weblog == weblog
    //#post(void org.apache.roller.weblogger.pojos.WeblogTheme(Weblog)): init'ed(this.weblog)
        this.weblog = weblog;
    }
    //#WeblogTheme.java:40: end of method: void org.apache.roller.weblogger.pojos.WeblogTheme.org.apache.roller.weblogger.pojos.WeblogTheme(Weblog)
    
    
    public Weblog getWeblog() {
        return this.weblog;
    //#WeblogTheme.java:44: method: Weblog org.apache.roller.weblogger.pojos.WeblogTheme.getWeblog()
    //#input(Weblog getWeblog()): this
    //#input(Weblog getWeblog()): this.weblog
    //#output(Weblog getWeblog()): return_value
    //#pre[2] (Weblog getWeblog()): init'ed(this.weblog)
    //#post(Weblog getWeblog()): return_value == this.weblog
    //#post(Weblog getWeblog()): init'ed(return_value)
    //#WeblogTheme.java:44: end of method: Weblog org.apache.roller.weblogger.pojos.WeblogTheme.getWeblog()
    }
    
}
    //#output(org.apache.roller.weblogger.pojos.WeblogTheme__static_init): __Descendant_Table[org/apache/roller/weblogger/pojos/WeblogTheme]
    //#output(org.apache.roller.weblogger.pojos.WeblogTheme__static_init): __Dispatch_Table.getWeblog()Lorg/apache/roller/weblogger/pojos/Weblog;
    //#output(org.apache.roller.weblogger.pojos.WeblogTheme__static_init): org/apache/roller/weblogger/pojos/Theme.__Descendant_Table[org/apache/roller/weblogger/pojos/WeblogTheme]
    //#post(org.apache.roller.weblogger.pojos.WeblogTheme__static_init): __Descendant_Table[org/apache/roller/weblogger/pojos/WeblogTheme] == &__Dispatch_Table
    //#post(org.apache.roller.weblogger.pojos.WeblogTheme__static_init): org/apache/roller/weblogger/pojos/Theme.__Descendant_Table[org/apache/roller/weblogger/pojos/WeblogTheme] == &__Dispatch_Table
    //#post(org.apache.roller.weblogger.pojos.WeblogTheme__static_init): __Dispatch_Table.getWeblog()Lorg/apache/roller/weblogger/pojos/Weblog; == &getWeblog
    //#WeblogTheme.java:: end of method: org.apache.roller.weblogger.pojos.WeblogTheme.org.apache.roller.weblogger.pojos.WeblogTheme__static_init
    //#WeblogTheme.java:: end of class: org.apache.roller.weblogger.pojos.WeblogTheme
