summaryrefslogtreecommitdiff
path: root/src/net/tuschhcm/routercontrol/Preset.java
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2012-10-16 08:35:08 -0700
committerJesse Morgan <jesse@jesterpm.net>2012-10-16 08:35:08 -0700
commit245099702c33c8792c9d99ab25e594e41935db33 (patch)
treee7ec7b4dd04c98f5ceb01839b8fc73724ac9cc77 /src/net/tuschhcm/routercontrol/Preset.java
parent446a26f85474596be21b88dea42778ab25022d67 (diff)
Changed tabs to spaces. Removed MyClass.java.
Diffstat (limited to 'src/net/tuschhcm/routercontrol/Preset.java')
-rw-r--r--src/net/tuschhcm/routercontrol/Preset.java62
1 files changed, 31 insertions, 31 deletions
diff --git a/src/net/tuschhcm/routercontrol/Preset.java b/src/net/tuschhcm/routercontrol/Preset.java
index e58fcf9..35ba8ab 100644
--- a/src/net/tuschhcm/routercontrol/Preset.java
+++ b/src/net/tuschhcm/routercontrol/Preset.java
@@ -5,35 +5,35 @@ package net.tuschhcm.routercontrol;
*/
public class Preset {
- /**
- * Load a preset from the given file.
- *
- * @param filename The file to load.
- * @return the Preset object
- */
- public static Preset loadPresetFile(String filename) {
- // TODO: Implement
- return null;
- }
-
- /**
- * Get the name of the preset.
- *
- * @return The preset name
- */
- public String getName() {
- // TODO: Implement
- return null;
- }
-
- /**
- * Get an input for the given output.
- *
- * @param output
- * @return Input number, or 0 if no change.
- */
- public int getInputForOutput(final int output) {
- // TODO: Implement
- return 0;
- }
+ /**
+ * Load a preset from the given file.
+ *
+ * @param filename The file to load.
+ * @return the Preset object
+ */
+ public static Preset loadPresetFile(String filename) {
+ // TODO: Implement
+ return null;
+ }
+
+ /**
+ * Get the name of the preset.
+ *
+ * @return The preset name
+ */
+ public String getName() {
+ // TODO: Implement
+ return null;
+ }
+
+ /**
+ * Get an input for the given output.
+ *
+ * @param output
+ * @return Input number, or 0 if no change.
+ */
+ public int getInputForOutput(final int output) {
+ // TODO: Implement
+ return 0;
+ }
}