Interface Account
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
AccountImpl
public interface Account extends org.eclipse.emf.ecore.EObject
A representation of the model object 'Account'.The following features are supported:
- See Also:
BankAccountsPackage.getAccount()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getNumber()
Returns the value of the 'Number' attribute.java.lang.String
getSortCode()
Returns the value of the 'Sort Code' attribute.void
setNumber(java.lang.String value)
Sets the value of the 'Number
' attribute.void
setSortCode(java.lang.String value)
Sets the value of the 'Sort Code
' attribute.
-
-
-
Method Detail
-
getSortCode
java.lang.String getSortCode()
Returns the value of the 'Sort Code' attribute.If the meaning of the 'Sort Code' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Sort Code' attribute.
- See Also:
setSortCode(String)
,BankAccountsPackage.getAccount_SortCode()
-
setSortCode
void setSortCode(java.lang.String value)
Sets the value of the 'Sort Code
' attribute.- Parameters:
value
- the new value of the 'Sort Code' attribute.- See Also:
getSortCode()
-
getNumber
java.lang.String getNumber()
Returns the value of the 'Number' attribute.If the meaning of the 'Number' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Number' attribute.
- See Also:
setNumber(String)
,BankAccountsPackage.getAccount_Number()
-
setNumber
void setNumber(java.lang.String value)
Sets the value of the 'Number
' attribute.- Parameters:
value
- the new value of the 'Number' attribute.- See Also:
getNumber()
-
-