*/
private void apply() {
HashSet<String>list_v = new HashSet<String>();
HashSet<String>list_e = new HashSet<String>();
for (int i = 0 ; i < this.tableModel.getRowCount() ; i++) {
AttributeShower shower = (AttributeShower)this.tableModel.getValueAt(i, 0);
if(shower.isShow() && this.tableModel.getValueAt(i, 3).equals("V")) {
list_v.add((String)this.tableModel.getValueAt(i, 1));
}
if(shower.isShow() && this.tableModel.getValueAt(i, 3).equals("E")) {
list_e.add((String)this.tableModel.getValueAt(i, 1));
}
}
if(this.graphView != null) {
this.graphView.showAttributes(list_v, list_e);