Example #1
0
 private EditorRow(TemplateEditor enclosingInstance, DeleteButton deleteButton, JLabel rowLabel, JComboBox typeBox, JTextField nameField)
 {
     InitBlock(enclosingInstance);
     this.deleteButton = deleteButton;
     this.rowLabel     = rowLabel;
     this.typeBox      = typeBox;
     this.nameField    = nameField;
 }
Example #2
0
 private DeleteButton(TemplateEditor enclosingInstance, ImageIcon icon, int row) : base(icon)
 {
     InitBlock(enclosingInstance);
     this.row = row;
 }
Example #3
0
 private void  InitBlock(TemplateEditor enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Example #4
0
 private void InitBlock(TemplateEditor enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Example #5
0
 private EditorRow(TemplateEditor enclosingInstance, DeleteButton deleteButton, JLabel rowLabel, JComboBox typeBox, JTextField nameField)
 {
     InitBlock(enclosingInstance);
     this.deleteButton = deleteButton;
     this.rowLabel = rowLabel;
     this.typeBox = typeBox;
     this.nameField = nameField;
 }
Example #6
0
 private DeleteButton(TemplateEditor enclosingInstance, ImageIcon icon, int row)
     : base(icon)
 {
     InitBlock(enclosingInstance);
     this.row = row;
 }