com.intellij.uiDesigner.wizard.DataBindingWizard.java Source code

Java tutorial

Introduction

Here is the source code for com.intellij.uiDesigner.wizard.DataBindingWizard.java

Source

/*
 * Copyright 2000-2009 JetBrains s.r.o.
 *
 * 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 com.intellij.uiDesigner.wizard;

import com.intellij.CommonBundle;
import com.intellij.ide.wizard.AbstractWizard;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.command.CommandProcessor;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.Messages;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.uiDesigner.UIDesignerBundle;
import org.jetbrains.annotations.NotNull;

import javax.swing.*;

/**
 * @author Anton Katilin
 * @author Vladimir Kondratyev
 */
public final class DataBindingWizard extends AbstractWizard {
    private static final Logger LOG = Logger.getInstance("#com.intellij.uiDesigner.wizard.DataBindingWizard");
    private final WizardData myData;
    private final Project myProject;
    private final BeanStep myBeanStep;

    public DataBindingWizard(@NotNull final Project project, @NotNull final VirtualFile formFile,
            @NotNull final WizardData data) {
        super(UIDesignerBundle.message("title.data.binding.wizard"), project);
        myProject = project;
        myData = data;

        myBeanStep = new BeanStep(myData);
        addStep(myBeanStep);
        addStep(new BindCompositeStep(myData));

        init();

        if (!data.myBindToNewBean) {
            doNextAction();
        }
    }

    public JComponent getPreferredFocusedComponent() {
        return myBeanStep.myTfShortClassName;
    }

    protected void doOKAction() {
        CommandProcessor.getInstance().executeCommand(myProject, new Runnable() {
            public void run() {
                ApplicationManager.getApplication().runWriteAction(new Runnable() {
                    public void run() {
                        try {
                            Generator.generateDataBindingMethods(myData);
                            DataBindingWizard.super.doOKAction();
                        } catch (Generator.MyException exc) {
                            Messages.showErrorDialog(getContentPane(), exc.getMessage(),
                                    CommonBundle.getErrorTitle());
                        }
                    }
                });
            }
        }, "", null);
    }

    protected String getHelpID() {
        return "guiDesigner.formCode.dataBind";
    }
}