Indentations break the feed.
[SquirrelJME.git] / modules / dio-watchdog / src / main / java / jdk / dio / watchdog / WatchdogTimerConfig.java
blobe8e3674a4f28481e5c97d488c450e38717752582
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 Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package jdk.dio.watchdog;
12 import cc.squirreljme.runtime.cldc.annotation.Api;
13 import cc.squirreljme.runtime.cldc.debug.Debugging;
14 import java.io.IOException;
15 import java.io.InputStream;
16 import java.io.OutputStream;
17 import jdk.dio.DeviceConfig;
19 @Api
20 public final class WatchdogTimerConfig
21 implements DeviceConfig<WatchdogTimer>, DeviceConfig.HardwareAddressing
23 @Api
24 public WatchdogTimerConfig(String __a, int __b)
26 throw Debugging.todo();
29 @Api
30 public WatchdogTimerConfig(int __a, int __b)
32 throw Debugging.todo();
35 @Override
36 public boolean equals(Object __a)
38 throw Debugging.todo();
41 @Override
42 public String getControllerName()
44 throw Debugging.todo();
47 @Override
48 public int getControllerNumber()
50 throw Debugging.todo();
53 @Api
54 public int getTimerNumber()
56 throw Debugging.todo();
59 @Override
60 public int hashCode()
62 throw Debugging.todo();
65 @Override
66 public int serialize(OutputStream __a)
67 throws IOException
69 if (false)
70 throw new IOException();
71 throw Debugging.todo();
74 @Api
75 public static WatchdogTimerConfig deserialize(InputStream __a)
76 throws IOException
78 if (false)
79 throw new IOException();
80 throw Debugging.todo();