Package org.jboss.dashboard.ui.components.table

Source Code of org.jboss.dashboard.ui.components.table.TableEditor

/**
* Copyright (C) 2012 JBoss Inc
*
* Licensed 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.
*/
package org.jboss.dashboard.ui.components.table;

import javax.inject.Inject;
import javax.inject.Named;

import org.jboss.dashboard.displayer.table.Table;
import org.jboss.dashboard.ui.annotation.panel.PanelScoped;
import org.jboss.dashboard.ui.components.DataDisplayerEditor;
import org.jboss.dashboard.displayer.DataDisplayer;
import org.jboss.dashboard.displayer.table.TableDisplayer;
import org.jboss.dashboard.ui.controller.CommandRequest;
import org.jboss.dashboard.ui.controller.CommandResponse;

@PanelScoped
@Named("table_editor")
public class TableEditor extends DataDisplayerEditor {

    @Inject
    protected DataSetTableEditor tableHandler;

    public String getBeanJSP() {
        return "/components/bam/displayer/table/table_editor.jsp";
    }

    public TableHandler getTableHandler() {
        return tableHandler;
    }

    public void setDataDisplayer(DataDisplayer dataDisplayer) {
        super.setDataDisplayer(dataDisplayer);

        // Pass the table to the table handler.
        TableDisplayer tableDisplayer = (TableDisplayer) dataDisplayer;
        Table table = tableDisplayer.getTable();
        tableHandler.setTable(table);
    }

    // DataDisplayerEditor implementation.

    public CommandResponse actionSubmit(CommandRequest request) throws Exception {
        return tableHandler.actionExecAction(request);
    }

    public CommandResponse actionCancel(CommandRequest request) throws Exception {
        return null;
    }
}
TOP

Related Classes of org.jboss.dashboard.ui.components.table.TableEditor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.