Package at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors

Source Code of at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.AddManifestAttributeDialog

/*******************************************************************************
* Copyright (c) 2012 BestSolution.at and others.
* 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
*
* Contributors:
*     Martin Bluehweis<martin.bluehweis@bestsolution.at> - initial API and implementation
*******************************************************************************/
package at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors;

import static at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.model.anttasks.parameters.ParametersPackage.Literals.PARAM__NAME;
import static at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.model.anttasks.parameters.ParametersPackage.Literals.PARAM__VALUE;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.databinding.EMFUpdateValueStrategy;
import org.eclipse.emf.databinding.IEMFValueProperty;
import org.eclipse.emf.databinding.edit.EMFEditProperties;
import org.eclipse.emf.edit.command.AddCommand;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.jface.databinding.swt.IWidgetValueProperty;
import org.eclipse.jface.databinding.swt.WidgetProperties;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

import at.bestsolution.efxclipse.tooling.jdt.ui.internal.JavaFXUIPlugin;
import at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.model.anttasks.AntTask;
import at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.model.anttasks.parameters.Param;
import at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.model.anttasks.parameters.ParametersFactory;

/**
* @author martin
*
*/
public class AddManifestAttributeDialog extends AddDialog<Param> {
  private Param o;
  private Text tName;
  private Text tValue;
  private final EditingDomain editingDomain;
  private final AntTask task;

  /**
   * @param parentShell
   *            parent shell
   * @param editingDomain
   *            the editing domain
   * @param task
   *            ant task working on
   */
  public AddManifestAttributeDialog( final Shell parentShell, final EditingDomain editingDomain, final AntTask task ) {
    super( parentShell );
    this.editingDomain = editingDomain;
    this.task = task;
  }

  @Override
  protected Control createDialogContent( final Composite parent ) {
    o = ParametersFactory.eINSTANCE.createParam();
    Composite area = new Composite( parent, SWT.NONE );
    area.setLayout( new GridLayout( 1, false ) );
    area.setLayoutData( new GridData( GridData.FILL_BOTH ) );

    getShell().setText( "Add manifest attribute" );
    setTitle( "Add manifest attribute" );
    setMessage( "Enter informations about manifest header entry" );

    Composite container = new Composite( area, SWT.NONE );
    container.setLayout( new GridLayout( 2, false ) );
    container.setLayoutData( new GridData( GridData.FILL_BOTH ) );

    IWidgetValueProperty tProp = WidgetProperties.text( SWT.Modify );

    {
      Label l = new Label( container, SWT.NONE );
      l.setText( "Name*:" );

      tName = new Text( container, SWT.BORDER );
      tName.setLayoutData( new GridData( GridData.FILL_HORIZONTAL ) );
      IEMFValueProperty prop = EMFEditProperties.value( editingDomain, PARAM__NAME );
      dbContext.bindValue( tProp.observe( tName ), prop.observe( o ), new EMFUpdateValueStrategy(
          EMFUpdateValueStrategy.POLICY_ON_REQUEST ), new EMFUpdateValueStrategy() );
    }

    {
      Label l = new Label( container, SWT.NONE );
      l.setText( "Value*:" );

      tValue = new Text( container, SWT.BORDER );
      tValue.setLayoutData( new GridData( GridData.FILL_HORIZONTAL ) );
      IEMFValueProperty prop = EMFEditProperties.value( editingDomain, PARAM__VALUE );
      dbContext.bindValue( tProp.observe( tValue ), prop.observe( o ), new EMFUpdateValueStrategy(
          EMFUpdateValueStrategy.POLICY_ON_REQUEST ), new EMFUpdateValueStrategy() );
    }
    return area;
  }

  @Override
  protected Command generateOkCommand() {
    return new AddCommand( editingDomain, task.getManifestEntries(), o );
  }

  @Override
  protected IStatus validate() {
    IStatus status;
    if ( tName.getText() == null || tName.getText().trim().equals( "" ) ) {
      status = new Status( Status.ERROR, JavaFXUIPlugin.PLUGIN_ID, "Please enter a name" );
    }
    else if ( tValue.getText() == null || tValue.getText().trim().equals( "" ) ) {
      status = new Status( Status.ERROR, JavaFXUIPlugin.PLUGIN_ID, "Please enter a value" );
    }
    else {
      status = new Status( Status.OK, JavaFXUIPlugin.PLUGIN_ID, "OK" );
    }
    return status;
  }

  @Override
  protected Param getObject() {
    return o;
  }
}
TOP

Related Classes of at.bestsolution.efxclipse.tooling.jdt.ui.internal.editors.AddManifestAttributeDialog

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.