this.pageStyleSelectBtn = new JButton();
this.pageStyleSelectBtn.setText("选择...");
this.pageStyleSelectBtn.setIcon(IconUtils.createImageIcon(ICON_CLASS_PATH + "theme.png"));
optionPanel.add(this.pageStyleSelectBtn);
this.codeGenerateBtn = new JButton(new GenerateAdapter(this));
this.codeGenerateBtn.setText("生成代码");
this.codeGenerateBtn.setIcon(IconUtils.createImageIcon(ICON_CLASS_PATH + "disk_black.png"));
this.codeGenerateBtn.setActionCommand(GenerateAdapter.GENERATE_CODE_COMMAND);
optionPanel.add(this.codeGenerateBtn);