org.nasdanika.models.functionflow.Source Maven / Gradle / Ivy
The newest version!
/**
*/
package org.nasdanika.models.functionflow;
/**
*
* A representation of the model object 'Source'.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.functionflow.Source#getSource Source}
* - {@link org.nasdanika.models.functionflow.Source#getBaseURI Base URI}
*
*
* @see org.nasdanika.models.functionflow.FunctionFlowPackage#getSource()
* @model interface="true" abstract="true"
* @generated
*/
public interface Source extends FlowElement {
/**
* Returns the value of the 'Source' attribute.
*
*
* @return the value of the 'Source' attribute.
* @see #setSource(String)
* @see org.nasdanika.models.functionflow.FunctionFlowPackage#getSource_Source()
* @model
* @generated
*/
String getSource();
/**
* Sets the value of the '{@link org.nasdanika.models.functionflow.Source#getSource Source}' attribute.
*
*
* @param value the new value of the 'Source' attribute.
* @see #getSource()
* @generated
*/
void setSource(String value);
/**
* Returns the value of the 'Base URI' attribute.
*
*
* @return the value of the 'Base URI' attribute.
* @see #setBaseURI(String)
* @see org.nasdanika.models.functionflow.FunctionFlowPackage#getSource_BaseURI()
* @model
* @generated
*/
String getBaseURI();
/**
* Sets the value of the '{@link org.nasdanika.models.functionflow.Source#getBaseURI Base URI}' attribute.
*
*
* @param value the new value of the 'Base URI' attribute.
* @see #getBaseURI()
* @generated
*/
void setBaseURI(String value);
} // Source