//# 0 errors, 156 messages
//#
/*
    //#ParsedTabItem.java:1:1: class: org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem
    //#ParsedTabItem.java:1:1: method: org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__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.core.util.menu;


/**
 * A parsed "tab-item" from an xml defined menu config.
 */
public class ParsedTabItem {
    //#ParsedTabItem.java:25: method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()
    //#input(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this
    //#output(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.action
    //#output(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.disabledProperty
    //#output(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.enabledProperty
    //#output(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.name
    //#output(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.perm
    //#output(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.role
    //#output(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.subActions
    //#post(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.action == null
    //#post(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.disabledProperty == null
    //#post(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.enabledProperty == null
    //#post(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.name == null
    //#post(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.perm == null
    //#post(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.role == null
    //#post(void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()): this.subActions == null
    
    private String name = null;
    private String action = null;
    private String[] subActions = null;
    private String perm = null;
    private String role = null;
    private String enabledProperty = null;
    private String disabledProperty = null;
    //#ParsedTabItem.java:33: end of method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem()
    
    
    public String getName() {
        return name;
    //#ParsedTabItem.java:37: method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getName()
    //#input(String getName()): this
    //#input(String getName()): this.name
    //#output(String getName()): return_value
    //#pre[2] (String getName()): init'ed(this.name)
    //#post(String getName()): return_value == this.name
    //#post(String getName()): init'ed(return_value)
    //#ParsedTabItem.java:37: end of method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getName()
    }

    public void setName(String name) {
        this.name = name;
    //#ParsedTabItem.java:41: method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setName(String)
    //#input(void setName(String)): name
    //#input(void setName(String)): this
    //#output(void setName(String)): this.name
    //#post(void setName(String)): this.name == name
    //#post(void setName(String)): init'ed(this.name)
    }
    //#ParsedTabItem.java:42: end of method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setName(String)

    public String getAction() {
        return action;
    //#ParsedTabItem.java:45: method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getAction()
    //#input(String getAction()): this
    //#input(String getAction()): this.action
    //#output(String getAction()): return_value
    //#pre[2] (String getAction()): init'ed(this.action)
    //#post(String getAction()): return_value == this.action
    //#post(String getAction()): init'ed(return_value)
    //#ParsedTabItem.java:45: end of method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getAction()
    }

    public void setAction(String action) {
        this.action = action;
    //#ParsedTabItem.java:49: method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setAction(String)
    //#input(void setAction(String)): action
    //#input(void setAction(String)): this
    //#output(void setAction(String)): this.action
    //#post(void setAction(String)): this.action == action
    //#post(void setAction(String)): init'ed(this.action)
    }
    //#ParsedTabItem.java:50: end of method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setAction(String)

    public String[] getSubActions() {
        return subActions;
    //#ParsedTabItem.java:53: method: String[] org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getSubActions()
    //#input(String[] getSubActions()): this
    //#input(String[] getSubActions()): this.subActions
    //#output(String[] getSubActions()): return_value
    //#pre[2] (String[] getSubActions()): init'ed(this.subActions)
    //#post(String[] getSubActions()): return_value == this.subActions
    //#post(String[] getSubActions()): init'ed(return_value)
    //#ParsedTabItem.java:53: end of method: String[] org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getSubActions()
    }

    public void setSubActions(String[] subActions) {
        this.subActions = subActions;
    //#ParsedTabItem.java:57: method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setSubActions(String[])
    //#input(void setSubActions(String[])): subActions
    //#input(void setSubActions(String[])): this
    //#output(void setSubActions(String[])): this.subActions
    //#post(void setSubActions(String[])): this.subActions == subActions
    //#post(void setSubActions(String[])): init'ed(this.subActions)
    }
    //#ParsedTabItem.java:58: end of method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setSubActions(String[])

    public String getPerm() {
        return perm;
    //#ParsedTabItem.java:61: method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getPerm()
    //#input(String getPerm()): this
    //#input(String getPerm()): this.perm
    //#output(String getPerm()): return_value
    //#pre[2] (String getPerm()): init'ed(this.perm)
    //#post(String getPerm()): return_value == this.perm
    //#post(String getPerm()): init'ed(return_value)
    //#ParsedTabItem.java:61: end of method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getPerm()
    }

    public void setPerm(String perm) {
        this.perm = perm;
    //#ParsedTabItem.java:65: method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setPerm(String)
    //#input(void setPerm(String)): perm
    //#input(void setPerm(String)): this
    //#output(void setPerm(String)): this.perm
    //#post(void setPerm(String)): this.perm == perm
    //#post(void setPerm(String)): init'ed(this.perm)
    }
    //#ParsedTabItem.java:66: end of method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setPerm(String)

    public String getRole() {
        return role;
    //#ParsedTabItem.java:69: method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getRole()
    //#input(String getRole()): this
    //#input(String getRole()): this.role
    //#output(String getRole()): return_value
    //#pre[2] (String getRole()): init'ed(this.role)
    //#post(String getRole()): return_value == this.role
    //#post(String getRole()): init'ed(return_value)
    //#ParsedTabItem.java:69: end of method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getRole()
    }

    public void setRole(String role) {
        this.role = role;
    //#ParsedTabItem.java:73: method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setRole(String)
    //#input(void setRole(String)): role
    //#input(void setRole(String)): this
    //#output(void setRole(String)): this.role
    //#post(void setRole(String)): this.role == role
    //#post(void setRole(String)): init'ed(this.role)
    }
    //#ParsedTabItem.java:74: end of method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setRole(String)

    public String getEnabledProperty() {
        return enabledProperty;
    //#ParsedTabItem.java:77: method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getEnabledProperty()
    //#input(String getEnabledProperty()): this
    //#input(String getEnabledProperty()): this.enabledProperty
    //#output(String getEnabledProperty()): return_value
    //#pre[2] (String getEnabledProperty()): init'ed(this.enabledProperty)
    //#post(String getEnabledProperty()): return_value == this.enabledProperty
    //#post(String getEnabledProperty()): init'ed(return_value)
    //#ParsedTabItem.java:77: end of method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getEnabledProperty()
    }

    public void setEnabledProperty(String enabledProperty) {
        this.enabledProperty = enabledProperty;
    //#ParsedTabItem.java:81: method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setEnabledProperty(String)
    //#input(void setEnabledProperty(String)): enabledProperty
    //#input(void setEnabledProperty(String)): this
    //#output(void setEnabledProperty(String)): this.enabledProperty
    //#post(void setEnabledProperty(String)): this.enabledProperty == enabledProperty
    //#post(void setEnabledProperty(String)): init'ed(this.enabledProperty)
    }
    //#ParsedTabItem.java:82: end of method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setEnabledProperty(String)

    public String getDisabledProperty() {
        return disabledProperty;
    //#ParsedTabItem.java:85: method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getDisabledProperty()
    //#input(String getDisabledProperty()): this
    //#input(String getDisabledProperty()): this.disabledProperty
    //#output(String getDisabledProperty()): return_value
    //#pre[2] (String getDisabledProperty()): init'ed(this.disabledProperty)
    //#post(String getDisabledProperty()): return_value == this.disabledProperty
    //#post(String getDisabledProperty()): init'ed(return_value)
    //#ParsedTabItem.java:85: end of method: String org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.getDisabledProperty()
    }

    public void setDisabledProperty(String disabledProperty) {
        this.disabledProperty = disabledProperty;
    //#ParsedTabItem.java:89: method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setDisabledProperty(String)
    //#input(void setDisabledProperty(String)): disabledProperty
    //#input(void setDisabledProperty(String)): this
    //#output(void setDisabledProperty(String)): this.disabledProperty
    //#post(void setDisabledProperty(String)): this.disabledProperty == disabledProperty
    //#post(void setDisabledProperty(String)): init'ed(this.disabledProperty)
    }
    //#ParsedTabItem.java:90: end of method: void org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.setDisabledProperty(String)
    
}
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Descendant_Table[org/apache/roller/weblogger/ui/core/util/menu/ParsedTabItem]
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getAction()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getDisabledProperty()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getEnabledProperty()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getName()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getPerm()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getRole()Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getSubActions()[Ljava/lang/String;
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setAction(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setDisabledProperty(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setEnabledProperty(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setName(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setPerm(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setRole(Ljava/lang/String;)V
    //#output(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setSubActions([Ljava/lang/String;)V
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Descendant_Table[org/apache/roller/weblogger/ui/core/util/menu/ParsedTabItem] == &__Dispatch_Table
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getAction()Ljava/lang/String; == &getAction
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getDisabledProperty()Ljava/lang/String; == &getDisabledProperty
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getEnabledProperty()Ljava/lang/String; == &getEnabledProperty
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getName()Ljava/lang/String; == &getName
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getPerm()Ljava/lang/String; == &getPerm
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getRole()Ljava/lang/String; == &getRole
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.getSubActions()[Ljava/lang/String; == &getSubActions
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setAction(Ljava/lang/String;)V == &setAction
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setDisabledProperty(Ljava/lang/String;)V == &setDisabledProperty
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setEnabledProperty(Ljava/lang/String;)V == &setEnabledProperty
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setName(Ljava/lang/String;)V == &setName
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setPerm(Ljava/lang/String;)V == &setPerm
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setRole(Ljava/lang/String;)V == &setRole
    //#post(org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init): __Dispatch_Table.setSubActions([Ljava/lang/String;)V == &setSubActions
    //#ParsedTabItem.java:: end of method: org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem.org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem__static_init
    //#ParsedTabItem.java:: end of class: org.apache.roller.weblogger.ui.core.util.menu.ParsedTabItem
