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 Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.jvm
.suite
;
12 import cc
.squirreljme
.runtime
.cldc
.debug
.Debugging
;
15 * This represents the name of a standard.
19 public final class StandardName
20 implements Comparable
<StandardName
>
23 * Initializes the standard name.
25 * @param __s The name of the standard.
26 * @throws InvalidSuiteException If the name is not valid.
27 * @throws NullPointerException On null arguments.
30 public StandardName(String __s
)
31 throws InvalidSuiteException
, NullPointerException
34 throw new NullPointerException("NARG");
36 throw Debugging
.todo();
44 public int compareTo(StandardName __o
)
46 throw Debugging
.todo();
54 public boolean equals(Object __o
)
56 throw Debugging
.todo();
66 throw Debugging
.todo();
74 public String
toString()
76 throw Debugging
.todo();