blob: 0376541d906a271652c0ece1846a053eecdb30fa [file] [log] [blame]
/**
*/
package adaptorinterface;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Publisher</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link adaptorinterface.Publisher#getTitle <em>Title</em>}</li>
* <li>{@link adaptorinterface.Publisher#getLabel <em>Label</em>}</li>
* <li>{@link adaptorinterface.Publisher#getIdentifier <em>Identifier</em>}</li>
* <li>{@link adaptorinterface.Publisher#getIcon <em>Icon</em>}</li>
* </ul>
*
* @see adaptorinterface.AdaptorinterfacePackage#getPublisher()
* @model
* @generated
*/
public interface Publisher extends EObject {
/**
* Returns the value of the '<em><b>Title</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Title</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Title</em>' attribute.
* @see #setTitle(String)
* @see adaptorinterface.AdaptorinterfacePackage#getPublisher_Title()
* @model required="true"
* @generated
*/
String getTitle();
/**
* Sets the value of the '{@link adaptorinterface.Publisher#getTitle <em>Title</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Title</em>' attribute.
* @see #getTitle()
* @generated
*/
void setTitle(String value);
/**
* Returns the value of the '<em><b>Label</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Label</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Label</em>' attribute.
* @see #setLabel(String)
* @see adaptorinterface.AdaptorinterfacePackage#getPublisher_Label()
* @model
* @generated
*/
String getLabel();
/**
* Sets the value of the '{@link adaptorinterface.Publisher#getLabel <em>Label</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Label</em>' attribute.
* @see #getLabel()
* @generated
*/
void setLabel(String value);
/**
* Returns the value of the '<em><b>Identifier</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Identifier</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Identifier</em>' attribute.
* @see #setIdentifier(String)
* @see adaptorinterface.AdaptorinterfacePackage#getPublisher_Identifier()
* @model required="true"
* @generated
*/
String getIdentifier();
/**
* Sets the value of the '{@link adaptorinterface.Publisher#getIdentifier <em>Identifier</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identifier</em>' attribute.
* @see #getIdentifier()
* @generated
*/
void setIdentifier(String value);
/**
* Returns the value of the '<em><b>Icon</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Icon</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Icon</em>' attribute.
* @see #setIcon(String)
* @see adaptorinterface.AdaptorinterfacePackage#getPublisher_Icon()
* @model
* @generated
*/
String getIcon();
/**
* Sets the value of the '{@link adaptorinterface.Publisher#getIcon <em>Icon</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Icon</em>' attribute.
* @see #getIcon()
* @generated
*/
void setIcon(String value);
} // Publisher