Interface Dog
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,NamedElement
,org.eclipse.emf.common.notify.Notifier
,Pet
- All Known Implementing Classes:
DogImpl
public interface Dog extends Pet
A representation of the model object 'Dog'.The following features are supported:
- See Also:
FamiliesPackage.getDog()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DogBreed
getBreed()
Returns the value of the 'Breed' attribute.District
getDistrict()
Returns the value of the 'District' container reference.boolean
isLoud()
Returns the value of the 'Loud' attribute.void
setBreed(DogBreed value)
Sets the value of the 'Breed
' attribute.void
setDistrict(District value)
Sets the value of the 'District
' container reference.void
setLoud(boolean value)
Sets the value of the 'Loud
' attribute.-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface org.eclipse.epsilon.hutn.test.model.families.NamedElement
getName, setName
-
-
-
-
Method Detail
-
isLoud
boolean isLoud()
Returns the value of the 'Loud' attribute.If the meaning of the 'Loud' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Loud' attribute.
- See Also:
setLoud(boolean)
,FamiliesPackage.getDog_Loud()
-
setLoud
void setLoud(boolean value)
Sets the value of the 'Loud
' attribute.- Parameters:
value
- the new value of the 'Loud' attribute.- See Also:
isLoud()
-
getBreed
DogBreed getBreed()
Returns the value of the 'Breed' attribute. The literals are from the enumerationDogBreed
.If the meaning of the 'Breed' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Breed' attribute.
- See Also:
DogBreed
,setBreed(DogBreed)
,FamiliesPackage.getDog_Breed()
-
setBreed
void setBreed(DogBreed value)
Sets the value of the 'Breed
' attribute.- Parameters:
value
- the new value of the 'Breed' attribute.- See Also:
DogBreed
,getBreed()
-
getDistrict
District getDistrict()
Returns the value of the 'District' container reference. It is bidirectional and its opposite is 'Dogs
'.If the meaning of the 'District' container reference isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'District' container reference.
- See Also:
setDistrict(District)
,FamiliesPackage.getDog_District()
,District.getDogs()
-
setDistrict
void setDistrict(District value)
Sets the value of the 'District
' container reference.- Parameters:
value
- the new value of the 'District' container reference.- See Also:
getDistrict()
-
-