public synchronized boolean IsValueTheSame(TComponentValue AValue) { TComponentTimestampedInt64Value V = (TComponentTimestampedInt64Value) AValue.getValue(); return ((V.Timestamp == Timestamp) && (V.Value == Value)); }
public synchronized void Assign(TComponentValue pValue) { TComponentTimestampedInt64Value Src = (TComponentTimestampedInt64Value) pValue.getValue(); Timestamp = Src.Timestamp; Value = Src.Value; super.Assign(pValue); }