Package org.jitterbit.ui.widget.table

Examples of org.jitterbit.ui.widget.table.TableUndoSupport$RowAddedEdit


    private final TableUndoSupport undoSupport;

    public PropertiesDescriptorTableModel(Collection<MessagePropertyTableRow> rows) {
        super(MessagePropertyTableRow.class, new TableColumnMetaData[] { NAME, TYPE, DEFAULT_VALUE, }, rows);
        newNameProducer = new NewPropertyNameProducer();
        undoSupport = new TableUndoSupport(this);
    }
View Full Code Here


     * <code>JndiContextProperties</code>.
     */
    public JndiContextTableModel(JndiContextProperties data) {
        super(NAME, VALUE);
        this.newNameProducer = new NewPropertyNameProducer();
        this.undoSupport = new TableUndoSupport(this);
        addRows(data.getSystemProperties());
        addRows(data.getUserDefinedProperties());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.widget.table.TableUndoSupport$RowAddedEdit

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.