1 /*
2 * Copyright (c) 2005, The K-Wf Grid Consortium
3 * Fraunhofer Institute for Computer Architecture and Software Technology
4 * See http://www.kwfgrid.eu and http://www.first.fraunhofer.de for more details.
5 */
6 package net.kwfgrid.gwui.taskframework;
7
8 /***
9 Interface for a form.
10 */
11 public interface Form {
12 /***
13 Show the form.
14 */
15 void show();
16 /***
17 Dispose the form.
18 */
19 void dispose();
20 }