Package xgenerator.ui.swing.adapter

Examples of xgenerator.ui.swing.adapter.MetadataFileAdapter


        }
      }
    });
    this.fileChooseBtn.setText("选择...");
    //this.fileChooseBtn.setPreferredSize(new Dimension(80, 21));
    this.loadBtn = new JButton(new MetadataFileAdapter(this));
    this.loadBtn.setText("加载");
    this.loadBtn.setActionCommand(MetadataFileAdapter.LOAD_METADATA_COMMAND);
    this.cancelBtn = new JButton(new MetadataFileAdapter(this));
    this.cancelBtn.setText("取消");
    this.cancelBtn.setActionCommand(MetadataFileAdapter.CANCEL_DIALOG_COMMAND);

    panel.add(filePathLabel);
    panel.add(filePathField);
View Full Code Here


    this.queryBtn.setText("查询");
    this.queryBtn.setIcon(IconUtils.createImageIcon(ICON_CLASS_PATH + "query.png"));
    this.queryBtn.setActionCommand(MetadataAdapter.QUERY_METADATA_COMMAND);
    northPanel.add(this.queryBtn);
   
    this.metadataFileBtn = new JButton(new MetadataFileAdapter(this));
    this.metadataFileBtn.setPreferredSize(new Dimension(115, 30));
    this.metadataFileBtn.setText("元数据文件");
    this.metadataFileBtn.setIcon(IconUtils.createImageIcon(ICON_CLASS_PATH + "meta.png"));
    this.metadataFileBtn.setActionCommand(MetadataFileAdapter.NEW_DIALOG_COMMAND);
    northPanel.add(this.metadataFileBtn);
View Full Code Here

TOP

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

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.