2023-10-26 20:05:36 +03:00
|
|
|
package Visual_DVM_2021.UI.Main;
|
|
|
|
|
import Common.UI.Windows.Dialog.DialogFields;
|
|
|
|
|
import Visual_DVM_2021.UI.Interface.FormWithSplitters;
|
|
|
|
|
|
|
|
|
|
import javax.swing.*;
|
|
|
|
|
public class SapforPackageFields implements DialogFields, FormWithSplitters {
|
|
|
|
|
private JPanel content;
|
|
|
|
|
public JSplitPane SCY;
|
|
|
|
|
private JToolBar tools;
|
|
|
|
|
public JLabel lObjectName;
|
|
|
|
|
private JButton bApplyObject;
|
|
|
|
|
private JButton bClose;
|
|
|
|
|
private JButton bPrevious;
|
|
|
|
|
private JButton bNext;
|
|
|
|
|
private JButton bCompare;
|
2023-10-26 20:46:03 +03:00
|
|
|
private JPanel treePanel;
|
2023-10-26 20:05:36 +03:00
|
|
|
public JPanel getContent() {
|
|
|
|
|
return content;
|
|
|
|
|
}
|
|
|
|
|
public SapforPackageFields(){
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|