alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 * 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.tool.service.eclipse.ui;

import org.apache.axis2.tool.service.bean.WSDLFileLocationBean;
import org.apache.axis2.tool.service.eclipse.plugin.ServiceArchiver;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.events.MouseAdapter;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.FileDialog;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;

public class WSDLFileSelectionPage extends AbstractServiceWizardPage {
    
    //  set the default to false. This step cannot be skipped
    private boolean skipNextPage = false;
    
    private Text wsdlTextBox;
    private Label selectionLabel;
    private Button browseButton;
    //private Button autoGenerateWSDLCheckButton;
    private Button skipWSDLCheckButton;
    private Button selectWSDLCheckButton;
    
    public WSDLFileSelectionPage(){
        super("page5");
    }

    /* (non-Javadoc)
     * @see org.apache.axis2.tool.service.eclipse.ui.AbstractServiceWizardPage#initializeDefaultSettings()
     */
    protected void initializeDefaultSettings() {
        settings.put(PREF_WSDL_FILE_NAME,"");
        settings.put(PREF_CHECK_WSDL_GENERATE,true);
        settings.put(PREF_CHECK_SKIP_WSDL,false);
        settings.put(PREF_CHECK_SELECT_WSDL,false);

    }

    /* (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();
        layout.numColumns=3;
        container.setLayout(layout);
        
        GridData gd = new GridData();
		//gd.horizontalSpan = 3;
		//autoGenerateWSDLCheckButton = new Button(container,SWT.CHECK);
		//autoGenerateWSDLCheckButton.setLayoutData(gd);
		//autoGenerateWSDLCheckButton.setText(ServiceArchiver.getResourceString("page5.generateauto.caption"));
		//autoGenerateWSDLCheckButton.setSelection(settings.getBoolean(PREF_CHECK_WSDL_GENERATE));
		//autoGenerateWSDLCheckButton.addSelectionListener(new SelectionListener(){
		//    public void widgetSelected(SelectionEvent e){
		//        handleSelection();
		//    }
		//    public void widgetDefaultSelected(SelectionEvent e){}
		//});
		//autoGenerateWSDLCheckButton.setToolTipText(ServiceArchiver.getResourceString("page5.autogen.tooltip"));
		////////////////////////////////////////
		// enable the automatic generation box
		//autoGenerateWSDLCheckButton.setEnabled(true);
		///////////////////////////////////////
		
		
		gd = new GridData();
		gd.horizontalSpan = 3;
		skipWSDLCheckButton = new Button(container,SWT.CHECK);
		skipWSDLCheckButton.setText(ServiceArchiver.getResourceString("page5.skipWSDL.caption"));
		skipWSDLCheckButton.setLayoutData(gd);
		skipWSDLCheckButton.setSelection(settings.getBoolean(PREF_CHECK_SKIP_WSDL));
		////////////////////////////////////////
		// enable the skip check box
		skipWSDLCheckButton.setEnabled(true);
		///////////////////////////////////////
		skipWSDLCheckButton.addSelectionListener(new SelectionListener(){
		    public void widgetSelected(SelectionEvent e){
		        handleSkip();
		    }
		    public void widgetDefaultSelected(SelectionEvent e){} 
		    
		});
		
		//add an empty lable
		new Label(container,SWT.NONE);
		
		gd = new GridData();
		gd.horizontalSpan = 3;
		selectWSDLCheckButton = new Button(container,SWT.CHECK);
		selectWSDLCheckButton.setText(ServiceArchiver.getResourceString("page5.selectWSDL.caption"));
		selectWSDLCheckButton.setLayoutData(gd);
		selectWSDLCheckButton.setSelection(settings.getBoolean(PREF_CHECK_SELECT_WSDL));
		////////////////////////////////////////
		// enable the skip check box
		selectWSDLCheckButton.setEnabled(true);
		///////////////////////////////////////
		selectWSDLCheckButton.addSelectionListener(new SelectionListener(){
		    public void widgetSelected(SelectionEvent e){
		        handleSelect();
		    }
		    public void widgetDefaultSelected(SelectionEvent e){} 
		    
		});
           
		gd = new GridData(GridData.FILL_HORIZONTAL); 
        selectionLabel= new Label(container,SWT.NULL);
        selectionLabel.setText(ServiceArchiver.getResourceString("page5.selectwsdl.caption"));
		
        wsdlTextBox = new Text(container,SWT.BORDER);
        wsdlTextBox.setLayoutData(gd);
        wsdlTextBox.setText(settings.get(PREF_WSDL_FILE_NAME));
        wsdlTextBox.addModifyListener(new ModifyListener(){
		    public void modifyText(ModifyEvent e){
		        handleModify();
		    }
		});
		
		browseButton = new Button(container,SWT.PUSH);
		browseButton.setText(ServiceArchiver.getResourceString("general.browse"));
		browseButton.addMouseListener(new MouseAdapter(){
		    public void mouseUp(MouseEvent e) {
		        handleBrowse();
		    }
		});
		

				
		setControl(container);
		
		if (restoredFromPreviousSettings){
		    handleSkip();
		    if (!skipWSDLCheckButton.getSelection()){
		    	handleSelect();
		    }
		}
    }
    
    //private void handleSelection(){
    //    boolean selection = this.autoGenerateWSDLCheckButton.getSelection();
    //    settings.put(PREF_CHECK_WSDL_GENERATE,selection);
    //    if (selection){
    //        this.skipNextPage = false;
    //        updateStatus(null);
    //        updateRecommendation(ServiceArchiver.getResourceString("page5.recommendation"));
    //        this.skipWSDLCheckButton.setSelection(false);
    //        this.selectWSDLCheckButton.setSelection(false);
    //        changeManualSelectionStatus(false); 
    //    }else{ 
    //          changeManualSelectionStatus(true);
    //          this.skipNextPage = true;
    //          handleModify();
    //          updateRecommendation("");
    //          this.skipWSDLCheckButton.setSelection(true);
    //    	if (skipWSDLCheckButton.getSelection() || selectWSDLCheckButton.getSelection()){
    //    		//you should not come here
    //   		
    //    	}else {
    //    		autoGenerateWSDLCheckButton.setSelection(true);
    //            this.skipNextPage = false;
    //            updateStatus(null);
    //            updateRecommendation(ServiceArchiver.getResourceString("page5.recommendation"));
    //            this.skipWSDLCheckButton.setSelection(false);
    //            this.selectWSDLCheckButton.setSelection(false);
    //            changeManualSelectionStatus(false); 
    //    	}
    //    }
    //}

    private void handleSkip(){
        if (skipWSDLCheckButton.getSelection()){
           //disable other widgtets
           changeManualSelectionStatus(false);
           //enable next
           this.updateStatus(null);
           settings.put(PREF_CHECK_SKIP_WSDL,true);
           this.selectWSDLCheckButton.setSelection(false);
        }else{
//            //call this to update the status
//            handleModify();
//            settings.put(PREF_CHECK_SKIP_WSDL,false);
//            this.autoGenerateWSDLCheckButton.setSelection(true);
        	if (selectWSDLCheckButton.getSelection()){
        		//you should not come here
        		
        	}else {
        		skipWSDLCheckButton.setSelection(true);
                //disable other widgtets
                changeManualSelectionStatus(false);
                //enable next
                this.updateStatus(null);
                settings.put(PREF_CHECK_SKIP_WSDL,true);
                this.selectWSDLCheckButton.setSelection(false);
        	}
        }
    }
    
    private void handleSelect(){
        if (selectWSDLCheckButton.getSelection()){
            changeManualSelectionStatus(true);
            //enable next
            this.updateStatus(null);
            this.skipWSDLCheckButton.setSelection(false);
           
        }else{
//            setStatus(true);
//            //call this to update the status
//            handleModify();
//            settings.put(PREF_CHECK_SKIP_WSDL,false);
//            this.autoGenerateWSDLCheckButton.setSelection(true);
        	if (skipWSDLCheckButton.getSelection()){
        		//you should not come here
        		
        	}else {
        		selectWSDLCheckButton.setSelection(true);
                //disable other widgtets
                changeManualSelectionStatus(true);
                //enable next
                this.updateStatus(null);
                this.skipWSDLCheckButton.setSelection(false);
        	}
        }
    }
    
   private void handleBrowse(){
        FileDialog fileDialog = new FileDialog(this.getShell());
        fileDialog.setFilterExtensions(new String[]{"*.wsdl"});
        String returnFileName = fileDialog.open() ;
        if (returnFileName!=null){
            this.wsdlTextBox.setText(returnFileName);
        }
    }
    

    
    private void handleModify(){
        String text = wsdlTextBox.getText();
        settings.put(PREF_WSDL_FILE_NAME,text);
        //validate
        if ("".equals(text)){
            this.updateStatus(ServiceArchiver.getResourceString("page5.error.wsdlnameempty")); 
         }else if(!text.endsWith(".wsdl")){
             this.updateStatus(ServiceArchiver.getResourceString("page5.error.wsdlnamewrong"));  
         }else{
             this.updateStatus(null);
         }
        
    }
    private void updateRecommendation(String message){
        ServiceArchiveWizard wizard = (ServiceArchiveWizard)this.getWizard();
        wizard.updateWsdlFileGenerationStatus(message);
       
    }
    private void changeManualSelectionStatus(boolean state){
        this.wsdlTextBox.setEnabled(state);
        this.browseButton.setEnabled(state);
        this.selectionLabel.setEnabled(state);
    }
    
    public boolean isAutoGenerate(){
        return false ;// autoGenerateWSDLCheckButton.getSelection();
    }
    
    /* (non-Javadoc)
     * @see org.apache.axis2.tool.service.eclipse.ui.AbstractServiceWizardPage#isSkipNext()
     */
    public boolean isSkipNext() {
        return false;
        //return this.skipNextPage;
    }
    
    public WSDLFileLocationBean getBean(){
        WSDLFileLocationBean locationBean = new WSDLFileLocationBean();
        locationBean.setManual(!isAutoGenerate());
        locationBean.setWSDLFileName(wsdlTextBox.getText());
        locationBean.setSkip(skipWSDLCheckButton.getSelection());
        return locationBean;
    }
    
	protected boolean getWizardComplete() {
		return false;
	}
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.