blob: be97a09791c93ab0c4c783ac2237a885f4469b4c [file] [log] [blame]
package org.eclipse.stem.ui.populationmodels.adapters;
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.core.resources.IProject;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.stem.populationmodels.standard.PopulationInitializer;
import org.eclipse.stem.populationmodels.standard.StandardPackage;
import org.eclipse.stem.ui.editors.GenericPropertyEditor;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.widgets.Composite;
@SuppressWarnings("all")
abstract public class PopulationInitializerPropertyEditor extends GenericPropertyEditor {
/**
* @param feature
* @return <code>true</code> if the feature is a dublin core feature that
* is specified by a user.
*/
@Override
public boolean isUserSpecifiedProperty(final EStructuralFeature feature) {
boolean retValue = false;
if(feature.getFeatureID() == StandardPackage.STANDARD_POPULATION_INITIALIZER__TARGET_ISO_KEY)
return false;
final EClass containingClass = feature.getEContainingClass();
// Is it a disease model property?
if (containingClass.equals(StandardPackage.eINSTANCE.getPopulationInitializer())
|| containingClass.getEAllSuperTypes().contains(
StandardPackage.eINSTANCE.getPopulationInitializer())) {
// Yes
retValue = true;
} // if a disease model property
return retValue;
} // isUserSpecifiedDiseaseModelProperty
public PopulationInitializerPropertyEditor(Composite parent, int style, IProject project) {
super(parent,style, project);
}
public PopulationInitializerPropertyEditor(final Composite parent, final int style,
final PopulationInitializer populationInitializer,
final ModifyListener projectValidator, IProject project) {
super(parent, style, populationInitializer, projectValidator, project);
}
public void populate(PopulationInitializer populationInitializer) {
}
public boolean validate() {
return true;
} // validate
@Override
public void dispose() {
super.dispose();
}
@Override
protected void checkSubclass() {
// Disable the check that prevents sub-classing of SWT components
}
} // PopulationInitializerPropertyEditor