/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.eef.eefnr.parts; // Start of user code for imports import org.eclipse.emf.common.util.Enumerator; // End of user code /** * @author <a href="mailto:nathalie.lepine@obeo.fr">Nathalie Lepine</a> * */ public interface RadioSamplePropertiesEditionPart { /** * @return the radioRequiredProperty * */ public Object getRadioRequiredProperty(); /** * Init the radioRequiredProperty * @param input the viewer input * @param current the current value */ public void initRadioRequiredProperty(Object input, Enumerator current); /** * Defines a new radioRequiredProperty * @param newValue the new radioRequiredProperty to set * */ public void setRadioRequiredProperty(Object newValue); /** * @return the radioOptionalProperty * */ public Object getRadioOptionalProperty(); /** * Init the radioOptionalProperty * @param input the viewer input * @param current the current value */ public void initRadioOptionalProperty(Object input, Enumerator current); /** * Defines a new radioOptionalProperty * @param newValue the new radioOptionalProperty to set * */ public void setRadioOptionalProperty(Object newValue); /** * @return the radioROProperty * */ public Object getRadioROProperty(); /** * Init the radioROProperty * @param input the viewer input * @param current the current value */ public void initRadioROProperty(Object input, Enumerator current); /** * Defines a new radioROProperty * @param newValue the new radioROProperty to set * */ public void setRadioROProperty(Object newValue); /** * Returns the internationalized title text. * * @return the internationalized title text. * */ public String getTitle(); // Start of user code for additional methods // End of user code }