コード例 #1
0
ファイル: Date.java プロジェクト: Frozenlock/BACnet4J
 @Override
 public void writeImpl(ByteQueue queue) {
   queue.push(year);
   queue.push(month.getId());
   queue.push((byte) day);
   queue.push(dayOfWeek.getId());
 }
コード例 #2
0
ファイル: Date.java プロジェクト: Frozenlock/BACnet4J
 public GregorianCalendar calculateGC() {
   if (!isSpecific())
     throw new BACnetRuntimeException("Date must be completely specified to calculate calendar");
   return new GregorianCalendar(year + 1900, (month.getId() & 0xff) - 1, day, 12, 0);
 }