1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.plugin
.util
;
13 import java
.time
.LocalDate
;
23 public final LocalDate date
;
26 public final String fileName
;
29 * Initializes the day.
31 * @param __date The date.
32 * @param __fileName The file name.
33 * @throws NullPointerException On null arguments.
36 public NoteDay(LocalDate __date
, String __fileName
)
37 throws NullPointerException
39 if (__date
== null || __fileName
== null)
40 throw new NullPointerException("NARG");
43 this.fileName
= __fileName
;