Package xgenerator.ui.swing.adapter

Examples of xgenerator.ui.swing.adapter.GenerateAdapter


    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);
View Full Code Here

TOP

Related Classes of xgenerator.ui.swing.adapter.GenerateAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.