org.cristalise.kernel.common.GTimeStamp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cristalise-kernel Show documentation
Show all versions of cristalise-kernel Show documentation
Cristal-ise is a description-driven software platform originally developed to track the construction of
the CMS ECAL detector of the LHC at CERN. This is its core library, known as the kernel, which manages
business objects called Items. Items are entirely configured from data, called descriptions, held in other Items.
Every change of a state in an Item is a consequence of an execution of an activity in that Item's lifecycle,
meaning that Cristal-ise applications are completely traceable, even in their design. It also supports extensive
versioning of Item description data, giving the system a high level of flexibility.
package org.cristalise.kernel.common;
/**
* org/cristalise/kernel/common/GTimeStamp.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from /home/travis/build/cristal-ise/cristal-ise/kernel/src/main/idl/CommonTypes.idl
* Sunday, August 11, 2019 10:53:19 AM UTC
*/
public final class GTimeStamp implements org.omg.CORBA.portable.IDLEntity
{
public int mYear = (int)0;
public int mMonth = (int)0;
public int mDay = (int)0;
public int mHour = (int)0;
public int mMinute = (int)0;
public int mSecond = (int)0;
public int mTimeOffset = (int)0;
public GTimeStamp ()
{
} // ctor
public GTimeStamp (int _mYear, int _mMonth, int _mDay, int _mHour, int _mMinute, int _mSecond, int _mTimeOffset)
{
mYear = _mYear;
mMonth = _mMonth;
mDay = _mDay;
mHour = _mHour;
mMinute = _mMinute;
mSecond = _mSecond;
mTimeOffset = _mTimeOffset;
} // ctor
} // class GTimeStamp
© 2015 - 2025 Weber Informatics LLC | Privacy Policy