source: trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorComponent.java @ 857

Last change on this file since 857 was 857, checked in by pharms, 12 years ago
  • initial version of the HTML monitor
File size: 382 bytes
Line 
1package de.ugoe.cs.autoquest.htmlmonitor;
2
3/**
4 * <p>
5 * TODO comment
6 * </p>
7 *
8 * @author Patrick Harms
9 */
10public interface HtmlMonitorComponent {
11
12    /**
13     *
14     */
15    void init() throws IllegalStateException, HtmlMonitorException;
16
17    /**
18     *
19     */
20    void start() throws IllegalStateException, HtmlMonitorException;
21
22    /**
23     *
24     */
25    void stop();
26}
Note: See TracBrowser for help on using the repository browser.