Java Code Examples for org.eclipse.swt.custom.TableEditor#dispose()

The following examples show how to use org.eclipse.swt.custom.TableEditor#dispose() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CategoryManageDialog.java    From ermaster-b with Apache License 2.0 5 votes vote down vote up
private void deleteNodeList() {
	this.categoryNameText.setText("");

	this.nodeTable.removeAll();

	if (this.nodeCheckMap != null) {
		for (TableEditor editor : this.nodeCheckMap.values()) {
			editor.getEditor().dispose();
			editor.dispose();
		}

		this.nodeCheckMap.clear();
	}
}
 
Example 2
Source File: ERTableComposite.java    From ermaster-b with Apache License 2.0 5 votes vote down vote up
private void disposeCheckBox(Column column) {
	TableEditor[] oldEditors = this.columnNotNullCheckMap.get(column);

	if (oldEditors != null) {
		for (TableEditor oldEditor : oldEditors) {
			if (oldEditor.getEditor() != null) {
				oldEditor.getEditor().dispose();
				oldEditor.dispose();
			}
		}

		this.columnNotNullCheckMap.remove(column);
	}
}
 
Example 3
Source File: IndexDialog.java    From ermaster-b with Apache License 2.0 5 votes vote down vote up
private void disposeCheckBox(Column column) {
	TableEditor oldEditor = this.columnCheckMap.get(column);

	if (oldEditor != null) {
		if (oldEditor.getEditor() != null) {
			oldEditor.getEditor().dispose();
		}
		oldEditor.dispose();
	}

	this.columnCheckMap.remove(column);
}
 
Example 4
Source File: ComplexUniqueKeyTabWrapper.java    From ermaster-b with Apache License 2.0 5 votes vote down vote up
private void disposeTableEditor() {
	for (TableEditor tableEditor : this.tableEditorList) {
		tableEditor.getEditor().dispose();
		tableEditor.dispose();
	}

	this.tableEditorList.clear();
	this.editorColumnMap.clear();
}
 
Example 5
Source File: IndexTabWrapper.java    From ermaster-b with Apache License 2.0 5 votes vote down vote up
private void clearButtonAndEditor() {
	for (Button checkButton : this.checkButtonList) {
		checkButton.dispose();
	}

	this.checkButtonList.clear();

	for (TableEditor editor : this.editorList) {
		editor.dispose();
	}

	this.editorList.clear();
}
 
Example 6
Source File: VGroupManageDialog.java    From ermaster-b with Apache License 2.0 5 votes vote down vote up
private void deleteNodeList() {
	this.categoryNameText.setText("");

	this.nodeTable.removeAll();

	if (this.nodeCheckMap != null) {
		for (TableEditor editor : this.nodeCheckMap.values()) {
			editor.getEditor().dispose();
			editor.dispose();
		}

		this.nodeCheckMap.clear();
	}
}
 
Example 7
Source File: LegendTable.java    From dawnsci with Eclipse Public License 1.0 5 votes vote down vote up
private void removeAllTableEntries()
{
	tblLegend.removeAll();
	Iterator<TableEditor> iter = editors.iterator();
	while (iter.hasNext()) {
		TableEditor editor = iter.next();
		if( editor == null) continue; // Not editable
		editor.getEditor().dispose();
		editor.dispose();
	}
	editors.clear();
	buttons.clear();
}
 
Example 8
Source File: CategoryManageDialog.java    From erflute with Apache License 2.0 5 votes vote down vote up
private void deleteNodeList() {
    categoryNameText.setText("");

    nodeTable.removeAll();
    if (nodeCheckMap != null) {
        for (final TableEditor editor : nodeCheckMap.values()) {
            editor.getEditor().dispose();
            editor.dispose();
        }

        nodeCheckMap.clear();
    }
}
 
Example 9
Source File: IndexDialog.java    From erflute with Apache License 2.0 5 votes vote down vote up
private void disposeCheckBox(ERColumn column) {
    final TableEditor oldEditor = columnCheckMap.get(column);
    if (oldEditor != null) {
        if (oldEditor.getEditor() != null) {
            oldEditor.getEditor().dispose();
        }
        oldEditor.dispose();
    }
    columnCheckMap.remove(column);
}
 
Example 10
Source File: CompoundUniqueKeyTabWrapper.java    From erflute with Apache License 2.0 5 votes vote down vote up
private void disposeTableEditor() {
    for (final TableEditor tableEditor : tableEditorList) {
        tableEditor.getEditor().dispose();
        tableEditor.dispose();
    }
    tableEditorList.clear();
    editorColumnMap.clear();
}
 
Example 11
Source File: RelationByExistingColumnsDialog.java    From ermasterr with Apache License 2.0 5 votes vote down vote up
private void disposeTableEditor() {
    for (final TableEditor tableEditor : tableEditorList) {
        tableEditor.getEditor().dispose();
        tableEditor.dispose();
    }

    tableEditorList.clear();
    editorReferencedMap.clear();
}
 
Example 12
Source File: ERTableComposite.java    From erflute with Apache License 2.0 5 votes vote down vote up
private void disposeCheckBox(ERColumn column) {
    final TableEditor[] oldEditors = columnNotNullCheckMap.get(column);

    if (oldEditors != null) {
        for (final TableEditor oldEditor : oldEditors) {
            if (oldEditor.getEditor() != null) {
                oldEditor.getEditor().dispose();
                oldEditor.dispose();
            }
        }

        columnNotNullCheckMap.remove(column);
    }
}
 
Example 13
Source File: MainWalkerGroupManageDialog.java    From erflute with Apache License 2.0 5 votes vote down vote up
private void deleteNodeList() {
    categoryNameText.setText("");
    nodeTable.removeAll();
    if (nodeCheckMap != null) {
        for (final TableEditor editor : nodeCheckMap.values()) {
            editor.getEditor().dispose();
            editor.dispose();
        }
        nodeCheckMap.clear();
    }
}
 
Example 14
Source File: RelationshipByExistingColumnsDialog.java    From erflute with Apache License 2.0 5 votes vote down vote up
private void disposeMapperEditor() {
    for (final TableEditor tableEditor : mapperEditorList) {
        tableEditor.getEditor().dispose();
        tableEditor.dispose();
    }
    mapperEditorList.clear();
    mapperEditorToReferredColumnsMap.clear();
}
 
Example 15
Source File: ThemePreferencePage.java    From APICloud-Studio with GNU General Public License v3.0 5 votes vote down vote up
private void clearTableEditors()
{
	if (fTableEditors == null)
		fTableEditors = new HashSet<TableEditor>();

	for (TableEditor tableEditor : fTableEditors)
	{
		tableEditor.getEditor().dispose();
		tableEditor.dispose();
	}
	fTableEditors.clear();
}
 
Example 16
Source File: CategoryManageDialog.java    From ermasterr with Apache License 2.0 5 votes vote down vote up
private void deleteNodeList() {
    categoryNameText.setText("");

    nodeTable.removeAll();

    if (nodeCheckMap != null) {
        for (final TableEditor editor : nodeCheckMap.values()) {
            editor.getEditor().dispose();
            editor.dispose();
        }

        nodeCheckMap.clear();
    }
}
 
Example 17
Source File: ERTableComposite.java    From ermasterr with Apache License 2.0 5 votes vote down vote up
private void disposeCheckBox(final Column column) {
    final TableEditor[] oldEditors = columnNotNullCheckMap.get(column);

    if (oldEditors != null) {
        for (final TableEditor oldEditor : oldEditors) {
            if (oldEditor.getEditor() != null) {
                oldEditor.getEditor().dispose();
                oldEditor.dispose();
            }
        }

        columnNotNullCheckMap.remove(column);
    }
}
 
Example 18
Source File: IndexDialog.java    From ermasterr with Apache License 2.0 5 votes vote down vote up
private void disposeCheckBox(final Column column) {
    final TableEditor oldEditor = columnCheckMap.get(column);

    if (oldEditor != null) {
        if (oldEditor.getEditor() != null) {
            oldEditor.getEditor().dispose();
        }
        oldEditor.dispose();
    }

    columnCheckMap.remove(column);
}
 
Example 19
Source File: ComplexUniqueKeyTabWrapper.java    From ermasterr with Apache License 2.0 5 votes vote down vote up
private void disposeTableEditor() {
    for (final TableEditor tableEditor : tableEditorList) {
        tableEditor.getEditor().dispose();
        tableEditor.dispose();
    }

    tableEditorList.clear();
    editorColumnMap.clear();
}
 
Example 20
Source File: IndexTabWrapper.java    From ermasterr with Apache License 2.0 5 votes vote down vote up
private void clearButtonAndEditor() {
    for (final Button checkButton : checkButtonList) {
        checkButton.dispose();
    }

    checkButtonList.clear();

    for (final TableEditor editor : editorList) {
        editor.dispose();
    }

    editorList.clear();
}