/** * JBoss, Home of Professional Open Source * Copyright 2010, 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.component.ajax; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.enterprise.context.RequestScoped; import javax.faces.event.ActionEvent; import javax.inject.Named; /** * @author <a href="http://community.jboss.org/people/bleathem">Brian Leathem</a> */ @RequestScoped @Named public class AjaxBean implements Serializable { private static final long serialVersionUID = 1L; private List<Node> nodes; public class Node implements Serializable { private static final long serialVersionUID = 1L; private String label; public Node(String label) { this.label = label; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } } private String value = "0"; private long longValue; public AjaxBean() { nodes = new ArrayList<Node>(5); nodes.add(new Node("a")); nodes.add(new Node("b")); nodes.add(new Node("c")); nodes.add(new Node("d")); nodes.add(new Node("e")); } public String getValue() { return value; } public void setValue(String value) { System.err.println("Setting Value to: " + value); this.value = value; } public void clearValue() { value = "0"; } public long getLongValue() { return longValue; } public void setLongValue(long longValue) { this.longValue = longValue; } public List<Node> getNodes() { return nodes; } public void setNodes(List<Node> nodes) { this.nodes = nodes; } public void listener() { System.out.println("### listener invoked"); } public void listener(String newValue) { this.value = newValue; } public void methodA(ActionEvent event) { System.out.println("TestMBean.methodA()"); } public void methodB(ActionEvent event) { System.out.println("TestMBean.methodB()"); } }