⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 repeaterbean.java

📁 一个比较好的jsf spring hibernate的例子
💻 JAVA
字号:
/* * $Id: RepeaterBean.java,v 1.7 2007/04/27 22:00:25 ofung Exp $ *//* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. *  * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved. *  * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License").  You * may not use this file except in compliance with the License. You can obtain * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific * language governing permissions and limitations under the License. *  * When distributing the software, include this License Header Notice in each * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt. * Sun designates this particular file as subject to the "Classpath" exception * as provided by Sun in the GPL Version 2 section of the License file that * accompanied this code.  If applicable, add the following below the License * Header, with the fields enclosed by brackets [] replaced by your own * identifying information: "Portions Copyrighted [year] * [name of copyright owner]" *  * Contributor(s): *  * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license."  If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above.  However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */package demo.model;import javax.annotation.PostConstruct;import javax.annotation.PreDestroy;import javax.faces.application.FacesMessage;import javax.faces.component.UIComponent;import javax.faces.component.UIData;import javax.faces.component.UIInput;import javax.faces.component.UISelectBoolean;import javax.faces.context.FacesContext;import javax.faces.event.ActionEvent;import java.util.ArrayList;import java.util.Iterator;import java.util.List;/** <p>Backing file bean for <code>/repeater.jsp</code> demo.</p> */public class RepeaterBean {    @PostConstruct public void postConstruct() {        System.out.printf("postConstruct Called\n");    }    @PreDestroy public void preDestroy() {        System.out.printf("preDestroy Called\n");    }    // -------------------------------------------------------- Bound Components    /** <p>The <code>accountId</code> field for the current row.</p> */    private UIInput accountId = null;    public UIInput getAccountId() {        return accountId;    }    public void setAccountId(UIInput accountId) {        this.accountId = accountId;    }    /** <p>The <code>checked</code> field for the current row.</p> */    private UISelectBoolean checked = null;    public UISelectBoolean getChecked() {        return checked;    }    public void setChecked(UISelectBoolean checked) {        this.checked = checked;    }    /** <p>The <code>created</code> field for the current row.</p> */    private UISelectBoolean created = null;    public UISelectBoolean getCreated() {        return created;    }    public void setCreated(UISelectBoolean created) {        this.created = created;    }    /** <p>The <code>UIData</code> component representing the entire table.</p> */    private UIData data = null;    public UIData getData() {        return data;    }    public void setData(UIData data) {        this.data = data;    }    // --------------------------------------------------- Calculated Properties    /** <p>Return the customer list containing the data backing this demo.</p> */    public List<CustomerBean> getCustomers() {        List<CustomerBean> list = (List<CustomerBean>)              FacesContext.getCurrentInstance().getExternalContext().                    getSessionMap().get("list");        if (list == null) {            list = new ArrayList<CustomerBean>();            list.add(new CustomerBean("123456", "Alpha Beta Company",                                      "ABC", 1234.56));            list.add(new CustomerBean("445566", "General Services, Ltd.",                                      "GS", 33.33));            list.add(new CustomerBean("654321", "Summa Cum Laude, Inc.",                                      "SCL", 76543.21));            list.add(new CustomerBean("333333", "Yabba Dabba Doo", "YDD",                                      333.33));            for (int i = 10; i < 20; i++) {                list.add(new CustomerBean("8888" + i,                                          "Customer " + i,                                          "CU" + i,                                          ((double) i) * 10.0));            }            FacesContext.getCurrentInstance().getExternalContext().                  getSessionMap().put("list", list);        }        return (list);    }    /** <p>Return a calculated label for the per-row button.</p> */    public String getPressLabel() {        return ("Account " + accountId.getValue());    }    // --------------------------------------------------------- Action Handlers    /** <p>Acknowledge that a row-specific link was clicked.</p> */    public String click() {        append("Link clicked for account " + accountId.getValue());        clear();        return (null);    }    public void clickAction(ActionEvent e) {        UIComponent link = e.getComponent();        String key = (String) link.getAttributes().get("key");        append("Link clicked for account " + accountId.getValue());        append("actionEvent occurred " + key);        clear();    }    /**     * <p>Create a new empty row to be filled in for a new record     * in the database.</p>     */    public String create() {        append("CREATE NEW ROW button pressed");        clear();        // Add a new row to the table        List<CustomerBean> list = getCustomers();        if (list != null) {            CustomerBean customer = new CustomerBean();            list.add(customer);            int index = data.getRowIndex();            data.setRowIndex(list.size() - 1);            created.setSelected(true);            data.setRowIndex(index);        }        // Position so that the new row is visible if necessary        scroll(list.size());        return (null);    }    /** <p>Delete any customers who have been checked from the list.</p> */    public String delete() {        append("DELETE CHECKED button pressed");        // Delete customers for whom the checked field is selected        List removes = new ArrayList();        int n = data.getRowCount();        for (int i = 0; i < n; i++) {            data.setRowIndex(i);            if (checked.isSelected()) {                removes.add(data.getRowData());                checked.setSelected(false);                created.setSelected(false);            }        }        if (removes.size() > 0) {            List<CustomerBean> list = getCustomers();            Iterator remove = removes.iterator();            while (remove.hasNext()) {                list.remove(remove.next());            }        }        clear();        return (null);    }    /** <p>Scroll directly to the first page.</p> */    public String first() {        append("FIRST PAGE button pressed");        scroll(0);        return (null);    }    /** <p>Scroll directly to the last page.</p> */    public String last() {        append("LAST PAGE button pressed");        scroll(count() - 1);        return (null);    }    /** <p>Scroll forwards to the next page.</p> */    public String next() {        append("NEXT PAGE button pressed");        int first = data.getFirst();        scroll(first + data.getRows());        return (null);    }    /** <p>Acknowledge that a row-specific button was pressed.</p> */    public String press() {        append("Button pressed for account " + accountId.getValue());        clear();        return (null);    }    /** <p>Scroll backwards to the previous page.</p> */    public String previous() {        append("PREVIOUS PAGE button pressed");        int first = data.getFirst();        scroll(first - data.getRows());        return (null);    }    /** <p>Handle a "reset" button by clearing local component values.</p> */    public String reset() {        append("RESET CHANGES button pressed");        clear();        return (null);    }    /**     * <p>Save any changes to the underlying database.  In a real application     * this would need to distinguish between inserts and updates, based on     * the state of the "created" property.</p>     */    public String update() {        append("SAVE CHANGES button pressed");        ; // Save to database as necessary        clear();        created();        return (null);    }    // --------------------------------------------------------- Private Methods    /**     * <p>Append an informational message to the set of messages that will     * be rendered when this view is redisplayed.</p>     *     * @param message Message text to be added     */    private void append(String message) {        FacesContext context = FacesContext.getCurrentInstance();        context.addMessage(null,                           new FacesMessage(FacesMessage.SEVERITY_INFO,                                            message, null));    }    /** <p>Clear the checked state for all customers.</p> */    private void clear() {        int n = count();        for (int i = 0; i < n; i++) {            data.setRowIndex(i);            checked.setSelected(false);        }    }    /** <p>Return the actual row count from our underlying data model.</p> */    private int count() {        int n = data.getRowCount();        if (n >= 0) {            return (n);        }        n = -1;        while (true) {            data.setRowIndex(n++);            if (!data.isRowAvailable()) {                break;            }        }        return (n);    }    /** <p>Clear the created state of all customers.</p> */    private void created() {        int n = count();        for (int i = 0; i < n; i++) {            data.setRowIndex(i);            created.setSelected(false);        }    }    /**     * <p>Return an <code>Iterator</code> over the customer list, if any;     * otherwise return <code>null</code>.</p>     */    private Iterator<CustomerBean> iterator() {        List<CustomerBean> list = getCustomers();        if (list != null) {            return (list.iterator());        } else {            return (null);        }    }    /**     * <p>Scroll to the page that contains the specified row number.</p>     *     * @param row Desired row number     */    private void scroll(int row) {        int rows = data.getRows();        if (rows < 1) {            return; // Showing entire table already        }        if (row < 0) {            data.setFirst(0);        } else if (row >= count()) {            data.setFirst(count() - 1);        } else {            data.setFirst(row - (row % rows));        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -