Перенос.
This commit is contained in:
18
src/GlobalData/SapforProfile/UI/SapforProfileFields.java
Normal file
18
src/GlobalData/SapforProfile/UI/SapforProfileFields.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package GlobalData.SapforProfile.UI;
|
||||
import Common.UI.TextField.StyledTextField;
|
||||
import Common.UI.Windows.Dialog.DialogFields;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
public class SapforProfileFields implements DialogFields {
|
||||
private JPanel content;
|
||||
public JTextField tfDescription;
|
||||
@Override
|
||||
public Component getContent() {
|
||||
return content;
|
||||
}
|
||||
private void createUIComponents() {
|
||||
// TODO: place custom component creation code here
|
||||
tfDescription = new StyledTextField();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user