Rename jblend-api to vendor-api-jblend.
[SquirrelJME.git] / modules / vendor-api-jblend / src / main / java / com / jblend / util / NativeThreadMonitor.java
blob22bb3cf0be4635911b033ac228260e07ec8f59db
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
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 com.jblend.util;
12 import cc.squirreljme.runtime.cldc.annotation.Api;
13 import cc.squirreljme.runtime.cldc.debug.Debugging;
15 public class NativeThreadMonitor
16 extends Thread
18 @Api
19 public static void reset()
21 throw Debugging.todo();
24 @Override
25 public void run()
27 throw Debugging.todo();