no message
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
package _VisualDVM.Visual.Windows;
|
||||
import Common.Visual.TextField.StyledTextField;
|
||||
import _VisualDVM.Global;
|
||||
import _VisualDVM.ProjectData.SapforData.Arrays.ProjectArray;
|
||||
import _VisualDVM.ProjectData.SapforData.Arrays.UI.ProjectArraysForm;
|
||||
import _VisualDVM.Visual.Interface.ArraysWindow;
|
||||
|
||||
import javax.swing.*;
|
||||
@@ -24,16 +24,16 @@ public class ArraysForm implements ArraysWindow {
|
||||
Global.mainModule.getProject().declaratedArrays.mountUI(arraysPanel);
|
||||
Global.mainModule.getProject().db.savedArrays.mountUI(savedArraysPanel);
|
||||
//--
|
||||
filterName.setText(ProjectArray.filterName);
|
||||
filterName.setText(ProjectArraysForm.filterName);
|
||||
filterName.getDocument().addDocumentListener(new DocumentListener() {
|
||||
@Override
|
||||
public void insertUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterName = filterName.getText();
|
||||
ProjectArraysForm.filterName = filterName.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
public void removeUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterName = filterName.getText();
|
||||
ProjectArraysForm.filterName = filterName.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
@@ -41,16 +41,16 @@ public class ArraysForm implements ArraysWindow {
|
||||
}
|
||||
});
|
||||
//-
|
||||
filterLocation.setText(ProjectArray.filterLocation);
|
||||
filterLocation.setText(ProjectArraysForm.filterLocation);
|
||||
filterLocation.getDocument().addDocumentListener(new DocumentListener() {
|
||||
@Override
|
||||
public void insertUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterLocation = filterLocation.getText();
|
||||
ProjectArraysForm.filterLocation = filterLocation.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
public void removeUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterLocation = filterLocation.getText();
|
||||
ProjectArraysForm.filterLocation = filterLocation.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
@@ -58,16 +58,16 @@ public class ArraysForm implements ArraysWindow {
|
||||
}
|
||||
});
|
||||
//-
|
||||
filterLocationName.setText(ProjectArray.filterLocationName);
|
||||
filterLocationName.setText(ProjectArraysForm.filterLocationName);
|
||||
filterLocationName.getDocument().addDocumentListener(new DocumentListener() {
|
||||
@Override
|
||||
public void insertUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterLocationName = filterLocationName.getText();
|
||||
ProjectArraysForm.filterLocationName = filterLocationName.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
public void removeUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterLocationName = filterLocationName.getText();
|
||||
ProjectArraysForm.filterLocationName = filterLocationName.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
@@ -75,16 +75,16 @@ public class ArraysForm implements ArraysWindow {
|
||||
}
|
||||
});
|
||||
//-
|
||||
filterFile.setText(ProjectArray.filterFile);
|
||||
filterFile.setText(ProjectArraysForm.filterFile);
|
||||
filterFile.getDocument().addDocumentListener(new DocumentListener() {
|
||||
@Override
|
||||
public void insertUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterFile = filterFile.getText();
|
||||
ProjectArraysForm.filterFile = filterFile.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
public void removeUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterFile = filterFile.getText();
|
||||
ProjectArraysForm.filterFile = filterFile.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
@@ -92,16 +92,16 @@ public class ArraysForm implements ArraysWindow {
|
||||
}
|
||||
});
|
||||
//-
|
||||
filterRegion.setText(ProjectArray.filterRegion);
|
||||
filterRegion.setText(ProjectArraysForm.filterRegion);
|
||||
filterRegion.getDocument().addDocumentListener(new DocumentListener() {
|
||||
@Override
|
||||
public void insertUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterRegion = filterRegion.getText();
|
||||
ProjectArraysForm.filterRegion = filterRegion.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
public void removeUpdate(DocumentEvent e) {
|
||||
ProjectArray.filterRegion = filterRegion.getText();
|
||||
ProjectArraysForm.filterRegion = filterRegion.getText();
|
||||
ShowArrays();
|
||||
}
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user