public TemplateCreatorView(JDialog parent) {
super(parent, "New Template");
this.templateName = new JTextField(20);
this.templateChooser = new FileChooser("Select Template File", true, false);
templateChooser.setExistingOnly(true);
templateChooser.setColumns(20);
this.okButton = new JButton("Create");
this.cancelButton = new JButton("Cancel");