Interface DateLiteral
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,Expression
,Literal
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
DateLiteralImpl
public interface DateLiteral extends Literal
A representation of the model object 'Date Literal'.The following features are supported:
- See Also:
ExpressionsPackage.getDateLiteral()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumberLiteral
getDay()
Returns the value of the 'Day' containment reference.NumberLiteral
getHour()
Returns the value of the 'Hour' containment reference.NumberLiteral
getMinute()
Returns the value of the 'Minute' containment reference.NumberLiteral
getMonth()
Returns the value of the 'Month' containment reference.NumberLiteral
getSecond()
Returns the value of the 'Second' containment reference.NumberLiteral
getYear()
Returns the value of the 'Year' containment reference.void
setDay(NumberLiteral value)
Sets the value of the 'Day
' containment reference.void
setHour(NumberLiteral value)
Sets the value of the 'Hour
' containment reference.void
setMinute(NumberLiteral value)
Sets the value of the 'Minute
' containment reference.void
setMonth(NumberLiteral value)
Sets the value of the 'Month
' containment reference.void
setSecond(NumberLiteral value)
Sets the value of the 'Second
' containment reference.void
setYear(NumberLiteral value)
Sets the value of the 'Year
' containment reference.-
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 com._1c.g5.v8.dt.dcs.expressions.model.Expression
getRetValTypes, getTypes
-
-
-
-
Method Detail
-
getYear
NumberLiteral getYear()
Returns the value of the 'Year' containment reference.- Returns:
- the value of the 'Year' containment reference.
- See Also:
setYear(NumberLiteral)
,ExpressionsPackage.getDateLiteral_Year()
-
setYear
void setYear(NumberLiteral value)
Sets the value of the 'Year
' containment reference.- Parameters:
value
- the new value of the 'Year' containment reference.- See Also:
getYear()
-
getMonth
NumberLiteral getMonth()
Returns the value of the 'Month' containment reference.- Returns:
- the value of the 'Month' containment reference.
- See Also:
setMonth(NumberLiteral)
,ExpressionsPackage.getDateLiteral_Month()
-
setMonth
void setMonth(NumberLiteral value)
Sets the value of the 'Month
' containment reference.- Parameters:
value
- the new value of the 'Month' containment reference.- See Also:
getMonth()
-
getDay
NumberLiteral getDay()
Returns the value of the 'Day' containment reference.- Returns:
- the value of the 'Day' containment reference.
- See Also:
setDay(NumberLiteral)
,ExpressionsPackage.getDateLiteral_Day()
-
setDay
void setDay(NumberLiteral value)
Sets the value of the 'Day
' containment reference.- Parameters:
value
- the new value of the 'Day' containment reference.- See Also:
getDay()
-
getHour
NumberLiteral getHour()
Returns the value of the 'Hour' containment reference.- Returns:
- the value of the 'Hour' containment reference.
- See Also:
setHour(NumberLiteral)
,ExpressionsPackage.getDateLiteral_Hour()
-
setHour
void setHour(NumberLiteral value)
Sets the value of the 'Hour
' containment reference.- Parameters:
value
- the new value of the 'Hour' containment reference.- See Also:
getHour()
-
getMinute
NumberLiteral getMinute()
Returns the value of the 'Minute' containment reference.- Returns:
- the value of the 'Minute' containment reference.
- See Also:
setMinute(NumberLiteral)
,ExpressionsPackage.getDateLiteral_Minute()
-
setMinute
void setMinute(NumberLiteral value)
Sets the value of the 'Minute
' containment reference.- Parameters:
value
- the new value of the 'Minute' containment reference.- See Also:
getMinute()
-
getSecond
NumberLiteral getSecond()
Returns the value of the 'Second' containment reference.- Returns:
- the value of the 'Second' containment reference.
- See Also:
setSecond(NumberLiteral)
,ExpressionsPackage.getDateLiteral_Second()
-
setSecond
void setSecond(NumberLiteral value)
Sets the value of the 'Second
' containment reference.- Parameters:
value
- the new value of the 'Second' containment reference.- See Also:
getSecond()
-
-