/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc. and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.richfaces.demo.output; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; @ManagedBean @SessionScoped public class MenuBean { private String current; private String mode = "server"; private boolean disabled = false; private boolean checkbox = false; public boolean isCheckbox() { return checkbox; } public void setCheckbox(boolean checkbox) { this.checkbox = checkbox; } public boolean isDisabled() { return disabled; } public void setDisabled(boolean disabled) { this.disabled = disabled; } public String getMode() { return mode; } public void setMode(String mode) { this.mode = mode; } public String getCurrent() { return this.current; } public void setCurrent(String current) { this.current = current; } public String doNew() { this.current = "New"; return null; } public String doOpen() { this.current = "Open"; return null; } public String doClose() { this.current = "Close"; return null; } public String doSave() { this.current = "Save"; return null; } public String doExit() { this.current = "Exit"; return null; } public void setValue(String value) { this.current = value; } }