/** */ package ftp; import java.util.List; import ftp.impl.Predicate; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Component</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link ftp.Component#getName <em>Name</em>}</li> * <li>{@link ftp.Component#getType <em>Type</em>}</li> * </ul> * * @see ftp.FtpPackage#getComponent() * @model * @generated */ public interface Component extends CompositionElement { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see ftp.FtpPackage#getComponent_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link ftp.Component#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Type</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' attribute. * @see #setType(String) * @see ftp.FtpPackage#getComponent_Type() * @model required="true" * @generated */ String getType(); /** * Sets the value of the '{@link ftp.Component#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see #getType() * @generated */ void setType(String value); List<Predicate> translateToLogic(); List<Port> retrievePorts(); List<TypedPortValue> retrieveParams(); String getSafeFunctor(); } // Component