Package com.google.gdt.eclipse.designer.gxt.databinding.wizards.autobindings

Source Code of com.google.gdt.eclipse.designer.gxt.databinding.wizards.autobindings.AutomaticDatabindingWizard

/*******************************************************************************
* Copyright 2011 Google Inc. All Rights Reserved.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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.google.gdt.eclipse.designer.gxt.databinding.wizards.autobindings;

import org.eclipse.wb.internal.core.databinding.wizards.autobindings.AutomaticDatabindingSecondPage;
import org.eclipse.wb.internal.core.databinding.wizards.autobindings.IAutomaticDatabindingProvider;
import org.eclipse.wb.internal.core.utils.jdt.core.ProjectUtils;
import org.eclipse.wb.internal.core.wizards.ErrorMessageWizardPage;

import org.eclipse.jdt.core.IJavaProject;

/**
*
* @author lobas_av
*
*/
public final class AutomaticDatabindingWizard
    extends
      org.eclipse.wb.internal.core.databinding.wizards.autobindings.AutomaticDatabindingWizard {
  ////////////////////////////////////////////////////////////////////////////
  //
  // Constructor
  //
  ////////////////////////////////////////////////////////////////////////////
  public AutomaticDatabindingWizard() {
    setWindowTitle("New GXT Automatic Databinding");
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // Pages
  //
  ////////////////////////////////////////////////////////////////////////////
  @Override
  public void addPages() {
    if (checkSelection()) {
      IAutomaticDatabindingProvider databindingProvider = GxtDatabindingProvider.create();
      // prepare selection
      String beanClassName = getSelectionBeanClass(getSelection());
      // create first page: via standard "New Java Wizard"
      AutomaticDatabindingFirstPage firstPage =
          new AutomaticDatabindingFirstPage(databindingProvider, beanClassName);
      firstPage.setTitle("Java Class");
      firstPage.setDescription("Create a new Java class.");
      m_mainPage = firstPage;
      addPage(firstPage);
      firstPage.setInitialSelection(getSelection());
      // create second page: databindings
      AutomaticDatabindingSecondPage secondPage =
          new AutomaticDatabindingSecondPage(firstPage, databindingProvider, beanClassName);
      secondPage.setTitle("Databindings");
      secondPage.setDescription("Bind Java Bean to GWT widgets.");
      addPage(secondPage);
    }
  }

  private boolean checkSelection() {
    IJavaProject javaProject = getJavaProject();
    if (javaProject == null
        || !ProjectUtils.hasType(javaProject, "com.extjs.gxt.ui.client.widget.Component")) {
      addPage(new ErrorMessageWizardPage("Project is not configured for GXT.",
          "Use \"Configure for using Ext GWT (GXT)\" action on module."));
      return false;
    }
    return true;
  }
}
TOP

Related Classes of com.google.gdt.eclipse.designer.gxt.databinding.wizards.autobindings.AutomaticDatabindingWizard

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.