/** * <copyright> * </copyright> * * $Id$ */ package org.talend.dataquality.indicators; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Value Indicator</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.dataquality.indicators.ValueIndicator#getValue <em>Value</em>}</li> * <li>{@link org.talend.dataquality.indicators.ValueIndicator#getDatatype <em>Datatype</em>}</li> * </ul> * </p> * * @see org.talend.dataquality.indicators.IndicatorsPackage#getValueIndicator() * @model * @generated */ public interface ValueIndicator extends Indicator { /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' attribute. * @see #setValue(String) * @see org.talend.dataquality.indicators.IndicatorsPackage#getValueIndicator_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link org.talend.dataquality.indicators.ValueIndicator#getValue <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() * @generated */ void setValue(String value); /** * Returns the value of the '<em><b>Datatype</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Datatype</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Datatype</em>' attribute. * @see #setDatatype(int) * @see org.talend.dataquality.indicators.IndicatorsPackage#getValueIndicator_Datatype() * @model * @generated */ int getDatatype(); /** * Sets the value of the '{@link org.talend.dataquality.indicators.ValueIndicator#getDatatype <em>Datatype</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Datatype</em>' attribute. * @see #getDatatype() * @generated */ void setDatatype(int value); } // ValueIndicator