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
.general
;
13 * Developer note session storage.
17 final class __DeveloperNoteSession__
20 public final String filePath
;
22 /** The number of times this was saved. */
25 /** Submitted content data. */
30 * Initializes the session details.
32 * @param __filePath The file path.
33 * @throws NullPointerException On null arguments.
36 public __DeveloperNoteSession__(String __filePath
)
37 throws NullPointerException
39 if (__filePath
== null)
40 throw new NullPointerException("NARG");
42 this.filePath
= __filePath
;