blob: ea0c1e4c3eb452924da723adbea68a09db64a8c0 [file] [log] [blame]
/*
* 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.apache.axis2.tool.codegen.eclipse.util.SettingsConstants;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.wizard.WizardPage;
public abstract class AbstractWizardPage extends WizardPage implements SettingsConstants {
protected IDialogSettings settings;
protected boolean restoredFromPreviousSettings = false;
public AbstractWizardPage(String pageName){
super(pageName+".name");
init(pageName);
}
protected void init(String pageName){
setTitle(CodegenWizardPlugin.getResourceString(pageName+".title"));
setDescription(CodegenWizardPlugin.getResourceString(pageName+".desc"));
setImageDescriptor(CodegenWizardPlugin.getWizardImageDescriptor());
/*
* Get the settings for this page. If there is no section in the
* Plugin's settings for this OptionsPage, create a new section
*/
IDialogSettings rootSettings = CodegenWizardPlugin.getDefault()
.getDialogSettings();
IDialogSettings section = rootSettings.getSection(this.getClass()
.getName());
if (section == null) {
settings = rootSettings.addNewSection(this.getClass().getName());
restoredFromPreviousSettings = false;
initializeDefaultSettings();
} else {
restoredFromPreviousSettings=true;
settings = section;
}
}
protected void updateStatus(String message) {
setErrorMessage(message);
setPageComplete(message == null);
}
protected abstract void initializeDefaultSettings();
public abstract int getPageType() ;
/**
* a convenient method to get the wizard
* @return
*/
public CodeGenWizard getCodegenWizard(){
return (CodeGenWizard)getWizard();
}
}