org.eclipse.gmt.modisco.infra.query
Interface ModelQueryParameter

All Known Implementing Classes:
ModelQueryParameterImpl

public interface ModelQueryParameter

A representation of the model object 'Model Query Parameter'. ModelQueryParameter is a class representing the query parameters.

The following features are supported:

See Also:
QueryPackage.getModelQueryParameter()

Method Summary
 java.lang.String getName()
          Returns the value of the 'Name' attribute.
 EClassifier getType()
          Returns the value of the 'Type' reference.
 void setName(java.lang.String value)
          Sets the value of the 'Name' attribute.
 void setType(EClassifier value)
          Sets the value of the 'Type' reference.
 

Method Detail

getName

java.lang.String getName()
Returns the value of the 'Name' attribute.

If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here...

ModelQueryParameter::name is the parameter name. In each query the parameter names must be unique.

Returns:
the value of the 'Name' attribute.
See Also:
setName(String), QueryPackage.getModelQueryParameter_Name()

setName

void setName(java.lang.String value)
Sets the value of the 'Name' attribute.

Parameters:
value - the new value of the 'Name' attribute.
See Also:
getName()

getType

EClassifier getType()
Returns the value of the 'Type' reference.

If the meaning of the 'Type' reference isn't clear, there really should be more of a description here...

ModelQueryParameter::type is an ecore::DataType representing the query parameter type.

Returns:
the value of the 'Type' reference.
See Also:
setType(EClassifier), QueryPackage.getModelQueryParameter_Type()

setType

void setType(EClassifier value)
Sets the value of the 'Type' reference.

Parameters:
value - the new value of the 'Type' reference.
See Also:
getType()