summaryrefslogtreecommitdiff
path: root/src/net/tuschhcm/routercontrol/Preset.java
blob: e58fcf96a639a5c9d8b6595400ede31b6be4f181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package net.tuschhcm.routercontrol;

/**
 * Class to represent a router preset.
 */
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;
	}
}