Package fr.soleil.salsa.client.view

Examples of fr.soleil.salsa.client.view.ActionButton


    private boolean configReloadedBeforeExecute = false;
    private ActionButton button = null;
    private boolean userEnabled = true;

    public AbstractActionSalsaBean(ACTION_TYPE action) {
        button = new ActionButton(action);
        setLayout(new BorderLayout());
        add(button, BorderLayout.CENTER);
        button.addActionListener(this);
        button.setToolTipText(action.toString());
    }
View Full Code Here


    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected,
            boolean hasFocus, int row, int column) {

        if (value != null && value instanceof HistoricLogEvent) {
            HistoricLogEvent event = (HistoricLogEvent) value;
            ActionButton component = new ActionButton(ACTION_TYPE.NONE);
            String action = event.getAction();
            component.setAction(action);
            component.setToolTipText(action);
            return component;

        }
        return super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
View Full Code Here

    private boolean configReloadedBeforeExecute = false;
    private ActionButton button = null;
    private boolean userEnabled = true;

    public AbstractActionSalsaBean(ACTION_TYPE action) {
        button = new ActionButton(action);
        button.setEnabled(false);
        setLayout(new BorderLayout());
        add(button, BorderLayout.CENTER);
        button.addActionListener(this);
        button.setToolTipText(action.toString());
View Full Code Here

    private boolean configReloadedBeforeExecute = false;
    private ActionButton button = null;
    private boolean userEnabled = true;

    public AbstractActionSalsaBean(ACTION_TYPE action) {
        button = new ActionButton(action);
        button.setEnabled(false);
        setLayout(new BorderLayout());
        add(button, BorderLayout.CENTER);
        button.addActionListener(this);
        button.setToolTipText(action.toString());
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.client.view.ActionButton

Copyright © 2018 www.massapicom. 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.