org.opencrx.kernel.generic.jpa3.DatePropertySetEntry Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.generic.jpa3;
/**
* Class {@code DatePropertySetEntry}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:41.592698902Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
@SuppressWarnings("serial")
public class DatePropertySetEntry extends org.opencrx.kernel.generic.jpa3.PropertySetEntry
implements org.opencrx.kernel.generic.cci2.DatePropertySetEntry
{
/**
* Constructor
*/
public DatePropertySetEntry(
){
// Implements Serializable
}
// ----------------------------------------------------------------------------
// Instance/DeclareValue
// ----------------------------------------------------------------------------
/**
* Attribute {@code dateValue}.
*/
java.sql.Date dateValue;
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code dateValue}.
* @return The possibly null value for attribute {@code dateValue}.
*/
public final javax.xml.datatype.XMLGregorianCalendar getDateValue(
){
return org.w3c.jpa3.Date.toCCI(this.dateValue);
}
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code dateValue}.
* @param dateValue The possibly null new value for attribute {@code dateValue}.
*/
public void setDateValue(
javax.xml.datatype.XMLGregorianCalendar dateValue
){
super.openmdxjdoMakeDirty();
this.dateValue =
org.w3c.jpa3.Date.toJDO(dateValue);
}
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}