2023-11-19 01:53:56 +03:00
|
|
|
package Repository.ComponentsServer.Component.UI;
|
2023-09-17 22:13:42 +03:00
|
|
|
import Common.UI.Windows.Dialog.DialogFields;
|
|
|
|
|
|
|
|
|
|
import javax.swing.*;
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
public class PickUpComponentFields implements DialogFields {
|
|
|
|
|
private JPanel content;
|
|
|
|
|
@Override
|
|
|
|
|
public Component getContent() {
|
|
|
|
|
return content;
|
|
|
|
|
}
|
|
|
|
|
}
|