/**
* <copyright>
* </copyright>
*
* $Id$
*/
package com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Custom Consumer</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.CustomConsumer#isUseScheduler <em>Use Scheduler</em>}</li>
* <li>{@link com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.CustomConsumer#getScheduler <em>Scheduler</em>}</li>
* <li>{@link com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.CustomConsumer#getTriggerInteval <em>Trigger Inteval</em>}</li>
* </ul>
* </p>
*
* @see com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.componentflowPackage#getCustomConsumer()
* @model
* @generated
*/
public interface CustomConsumer extends Consumer {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright, Bostech Corp.";
/**
* Returns the value of the '<em><b>Use Scheduler</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Use Scheduler</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Use Scheduler</em>' attribute.
* @see #setUseScheduler(boolean)
* @see com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.componentflowPackage#getCustomConsumer_UseScheduler()
* @model default="false"
* @generated
*/
boolean isUseScheduler();
/**
* Sets the value of the '{@link com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.CustomConsumer#isUseScheduler <em>Use Scheduler</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Use Scheduler</em>' attribute.
* @see #isUseScheduler()
* @generated
*/
void setUseScheduler(boolean value);
/**
* Returns the value of the '<em><b>Scheduler</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Scheduler</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Scheduler</em>' containment reference.
* @see #setScheduler(Scheduler)
* @see com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.componentflowPackage#getCustomConsumer_Scheduler()
* @model containment="true"
* @generated
*/
Scheduler getScheduler();
/**
* Sets the value of the '{@link com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.CustomConsumer#getScheduler <em>Scheduler</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Scheduler</em>' containment reference.
* @see #getScheduler()
* @generated
*/
void setScheduler(Scheduler value);
/**
* Returns the value of the '<em><b>Trigger Inteval</b></em>' attribute.
* The default value is <code>"1000"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Trigger Inteval</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Trigger Inteval</em>' attribute.
* @see #setTriggerInteval(String)
* @see com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.componentflowPackage#getCustomConsumer_TriggerInteval()
* @model default="1000"
* @generated
*/
String getTriggerInteval();
/**
* Sets the value of the '{@link com.bostechcorp.cbesb.ui.componentflow.componentFlowEditor.CustomConsumer#getTriggerInteval <em>Trigger Inteval</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Trigger Inteval</em>' attribute.
* @see #getTriggerInteval()
* @generated
*/
void setTriggerInteval(String value);
} // CustomConsumer
|