2023-11-19 02:12:44 +03:00
|
|
|
package Repository.Component.UI;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-08 22:33:49 +03:00
|
|
|
import Common.Visual.Windows.Dialog.DialogFields;
|
2023-09-17 22:13:42 +03:00
|
|
|
|
|
|
|
|
import javax.swing.*;
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
public class ComponentsFields implements DialogFields {
|
|
|
|
|
public JPanel content;
|
|
|
|
|
private JPanel componentsPanel;
|
|
|
|
|
public ComponentsFields() {
|
|
|
|
|
Global.Components.mountUI(componentsPanel);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public Component getContent() {
|
|
|
|
|
return content;
|
|
|
|
|
}
|
|
|
|
|
}
|