Package org.springframework.ide.eclipse.osgi.ui.editor.compendium

Source Code of org.springframework.ide.eclipse.osgi.ui.editor.compendium.OsgiCompendiumDetailsSectionPart

/*******************************************************************************
*  Copyright (c) 2012 - 2013 GoPivotal, Inc.
*  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:
*      GoPivotal, Inc. - initial API and implementation
*******************************************************************************/
package org.springframework.ide.eclipse.osgi.ui.editor.compendium;

import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.forms.widgets.FormToolkit;
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMElement;
import org.springframework.ide.eclipse.config.core.contentassist.providers.BeanReferenceContentProposalProvider;
import org.springframework.ide.eclipse.config.core.schemas.OsgiCompendiumSchemaConstants;
import org.springframework.ide.eclipse.config.ui.editors.AbstractConfigEditor;
import org.springframework.ide.eclipse.config.ui.editors.SpringConfigDetailsSectionPart;
import org.springframework.ide.eclipse.config.ui.widgets.TextAttribute;
import org.springframework.ide.eclipse.config.ui.widgets.TextAttributeProposalAdapter;

/**
* @author Leo Dos Santos
*/
@SuppressWarnings("restriction")
public class OsgiCompendiumDetailsSectionPart extends SpringConfigDetailsSectionPart {

  public OsgiCompendiumDetailsSectionPart(AbstractConfigEditor editor, IDOMElement input, Composite parent,
      FormToolkit toolkit) {
    super(editor, input, parent, toolkit);
  }

  @Override
  protected boolean addCustomAttribute(Composite client, String attr, boolean required) {
    // OsgiContentAssistProcessor and OsgiHyperlinkDetector
    String elem = getInput().getLocalName();
    if (OsgiCompendiumSchemaConstants.ELEM_PROPERTY_PLACEHOLDER.equals(elem)
        && OsgiCompendiumSchemaConstants.ATTR_DEFAULTS_REF.equals(attr)) {
      TextAttribute attrControl = createBeanAttribute(client, attr, required);
      addWidget(attrControl);
      addAdapter(new TextAttributeProposalAdapter(attrControl, new BeanReferenceContentProposalProvider(
          getInput(), attr, true)));
      return true;
    }
    return super.addCustomAttribute(client, attr, required);
  }

}
TOP

Related Classes of org.springframework.ide.eclipse.osgi.ui.editor.compendium.OsgiCompendiumDetailsSectionPart

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.