⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 toolselectionpage.java

📁 sql语句
💻 JAVA
字号:
/*
 * Copyright 2004,2005 The Apache Software Foundation.
 *
 * Licensed 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.tool.codegen.eclipse.ui;

import org.apache.axis2.tool.codegen.eclipse.CodeGenWizard;
import org.apache.axis2.tool.codegen.eclipse.plugin.CodegenWizardPlugin;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;

public class ToolSelectionPage extends AbstractWizardPage {
   
    private Button java2WSDLRadioButton;
    private Button wsdl2JavaRadioButton;
    public ToolSelectionPage() {
        super("page0");
       
    }
    
    /**
     * Creates a default value for the settings on this page
     */
    protected void initializeDefaultSettings() {
        settings.put(PREF_TOOL_SELECTION_JAVA2WSDL, false);
        settings.put(PREF_TOOL_SELECTION_WSDL2JAVA, true);
    }

    /* (non-Javadoc)
     * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
     */
public void createControl(Composite parent) {
        
        Composite container = new Composite(parent, SWT.NULL);
        GridLayout layout = new GridLayout();
        container.setLayout(layout);
        layout.numColumns = 1;
        layout.verticalSpacing = 9;

              
        Label label = new Label(container, SWT.NULL);
        label.setText(CodegenWizardPlugin.getResourceString("page0.options.desc"));
             
        wsdl2JavaRadioButton = new Button(container,SWT.RADIO);
        wsdl2JavaRadioButton.setText(CodegenWizardPlugin.getResourceString("page0.wsdl2java.caption"));
        wsdl2JavaRadioButton.setToolTipText(CodegenWizardPlugin.getResourceString("page0.wsdl2java.desc"));
        wsdl2JavaRadioButton.setSelection(settings.getBoolean(PREF_TOOL_SELECTION_WSDL2JAVA));
        wsdl2JavaRadioButton.addSelectionListener(new SelectionAdapter(){
           public void widgetSelected(SelectionEvent e)
           {
              handleCheckboxSelection();
           }
        });
        
        java2WSDLRadioButton = new Button(container,SWT.RADIO);
        java2WSDLRadioButton.setText(CodegenWizardPlugin.getResourceString("page0.java2wsdl.caption"));
        java2WSDLRadioButton.setToolTipText(CodegenWizardPlugin.getResourceString("page0.java2wsdl.desc"));
        java2WSDLRadioButton.setSelection(settings.getBoolean(PREF_TOOL_SELECTION_JAVA2WSDL));
        java2WSDLRadioButton.addSelectionListener(new SelectionAdapter(){
           public void widgetSelected(SelectionEvent e)
           {
              handleCheckboxSelection();
           }
        });
        
        ///////////////////////////////////////
        //java2WSDLRadioButton.setEnabled(false);
        //////////////////////////////////////
        
        handleCheckboxSelection();
        setControl(container);

    }

	private void handleCheckboxSelection(){
	    CodeGenWizard wizard = (CodeGenWizard)this.getWizard();
	    if (wsdl2JavaRadioButton.getSelection()){
	        settings.put(PREF_TOOL_SELECTION_WSDL2JAVA,true);
	        settings.put(PREF_TOOL_SELECTION_JAVA2WSDL,false);
	       wizard.setSelectedWizardType(WSDL_2_JAVA_TYPE); 
	    }else if (java2WSDLRadioButton.getSelection()){
	        settings.put(PREF_TOOL_SELECTION_WSDL2JAVA,false);
	        settings.put(PREF_TOOL_SELECTION_JAVA2WSDL,true);
	        wizard.setSelectedWizardType(JAVA_2_WSDL_TYPE); 
	    }
	}
	
	
    /* (non-Javadoc)
     * @see org.apache.axis2.tool.codegen.eclipse.ui.CodegenPage#getPageType()
     */
    public int getPageType() {
         return UNSPECIFIED_TYPE;
    }
    
        
}

⌨️ 快捷键说明

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