chooserpanel.java

来自「开源的axis2框架的源码。用于开发WEBSERVER」· Java 代码 · 共 203 行

JAVA
203
字号
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.axis2.tools.idea;

import org.apache.axis2.tools.component.WizardPanel;
import org.apache.axis2.tools.component.WizardComponents;
import org.apache.axis2.tools.wizardframe.CodegenFrame;

import javax.swing.*;
import javax.swing.border.EmptyBorder;
import java.awt.*;
import java.awt.event.ItemListener;
import java.awt.event.ItemEvent;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

/**
 * this panel used for as chooser
 *      java2wsdl codegen option
 *      wsdl2java  codegen option
 *
 * extend from wizardPanel calss
 */

public class ChooserPanel  extends WizardPanel {
    /**
     * varialbales
     */
    private JButton btnHint;
    private JLabel lblHint;
    private boolean flag=false;
    private JRadioButton optionJ2WRadioButton;
    private JRadioButton optionW2JRadioButton;
    private JRadioButton optionServiceArchiverRadioButton;
    private ButtonGroup bg;
    private char selectedOption = 'A'; // 'N' is no option selected  'A', 'B','C' & 'F' stands for options
    final private String hint="You can generate java code from a WSDL or WSDL from a java source file.";
    /**
     * construct method for chooserPanel
     *  @param wizardComponents
     */

    public ChooserPanel(WizardComponents wizardComponents){

        super(wizardComponents, "Axis2 Idea Plugin Wizards");
        setPanelTopTitle("Select the wizard");
        setPanelBottomTitle("Welcome to the Axis2 code generator wizard");
        init();
    }

    /**
     * Panel initial method
     */
    private void init(){

        lblHint =new JLabel("");
        btnHint =new JButton("Hint >>");
        btnHint.setBorder(new EmptyBorder(new Insets(0,0,0,0)));

        optionW2JRadioButton = new JRadioButton("Generate java sorce code from a WSDl file.",true);
        optionJ2WRadioButton = new JRadioButton("Generate a WSDl from a java source file",false);
        optionServiceArchiverRadioButton = new JRadioButton("Create Service Archiver",false);
        ButtonGroup bg = new ButtonGroup();
        bg.add(optionJ2WRadioButton);
        bg.add(optionW2JRadioButton);
        bg.add(optionServiceArchiverRadioButton);

        this.setLayout(new GridBagLayout() );


        this.add(new JLabel("Please specify what you want to do.")
                , new GridBagConstraints(0, 0, 1, 1, 1.0, 0.0
                , GridBagConstraints.NORTHWEST , GridBagConstraints.NONE
                , new Insets(10, 20, 0,0), 0, 0));

        // option button for java2wsdl
        optionW2JRadioButton.setEnabled(true);
        this.add(optionW2JRadioButton
                , new GridBagConstraints(0, 1, 1, 1, 1.0, 0.0
                , GridBagConstraints.NORTHWEST , GridBagConstraints.NONE
                , new Insets(10, 20, 0,0), 0, 0));
        optionW2JRadioButton.addItemListener(new ItemListener() {
            public void itemStateChanged(ItemEvent e) {
                if (e.getStateChange() == ItemEvent.SELECTED) {
                    selectedOption = 'A';
                    update();
                }
            }
        });

        // option button for wsdl2java

        this.add(optionJ2WRadioButton
                , new GridBagConstraints(0, 2, 1, 1, 1.0, 0.0
                , GridBagConstraints.NORTHWEST , GridBagConstraints.NONE
                , new Insets(10, 20, 0,0), 0, 0));
        optionJ2WRadioButton.addItemListener(new ItemListener() {
            public void itemStateChanged(ItemEvent e) {
                if (e.getStateChange() == ItemEvent.SELECTED) {
                    selectedOption = 'B';
                    update();
                }
            }
        });
        // option button for service Archive

            this.add(optionServiceArchiverRadioButton
                    , new GridBagConstraints(0, 3, 1, 1, 1.0, 0.0
                    , GridBagConstraints.NORTHWEST , GridBagConstraints.NONE
                    , new Insets(10, 20, 0,0), 0, 0));
            optionServiceArchiverRadioButton .addItemListener(new ItemListener() {
                public void itemStateChanged(ItemEvent e) {
                    if (e.getStateChange() == ItemEvent.SELECTED) {
                        selectedOption = 'C';
                        update();
                    }
                }
            });


        // hint button

        this.add(btnHint,
                new GridBagConstraints(0,4, 1, 1, 1.0,0.0
                        , GridBagConstraints.NORTHWEST , GridBagConstraints.NONE
                        , new Insets(10, 20, 0,0), 0, 0));
        btnHint.addActionListener(new ActionListener()  {
            public void actionPerformed(ActionEvent e) {
                if(flag){
                    btnHint.setText("Hint >>");
                    lblHint.setText("");
                    flag=false;
                }else{
                    btnHint.setText("Hint <<");
                    lblHint.setText(hint);
                    flag=true;
                }
                update();
            }
        });

        // hint lable

        this.add(lblHint,
                new GridBagConstraints(0, 5, 1, 1, 1.0, 1.0
                        , GridBagConstraints.NORTHWEST , GridBagConstraints.NONE
                        , new Insets(10, 20, 0,0), 0, 0));


        setNextButtonEnabled((selectedOption == 'A') || (selectedOption == 'B') );

    }

    /**
     * method for update when panel has some change
     */

    public void update() {
        setNextButtonEnabled((selectedOption == 'A') || (selectedOption == 'B') ||(selectedOption == 'C'));
        setBackButtonEnabled(false); // there is no way back
        setProgressPanelVisible(false);
        setPageComplete(true);          
    }

    /**
     * method for next button
     */
    public void next() {
        if (selectedOption == 'A') {
            switchPanel(CodegenFrame.PANEL_FIRST_A) ;

        } else if (selectedOption == 'B') {
            switchPanel(CodegenFrame.PANEL_FIRST_B );
        }
        else if (selectedOption == 'C') {
            switchPanel(CodegenFrame.PANEL_FIRST_C );
        }
        setNextButtonEnabled(false);
    }

    /**
     * methodd for back button
     */
    public void back() {
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?