~ubuntu-branches/ubuntu/utopic/figtree/utopic

« back to all changes in this revision

Viewing changes to src/figtree/webui/Main.java

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Tille
  • Date: 2011-02-21 08:17:38 UTC
  • Revision ID: james.westby@ubuntu.com-20110221081738-80pe2ulo8rg7up10
Tags: upstream-1.3.1
ImportĀ upstreamĀ versionĀ 1.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package figtree.webui;
 
2
 
 
3
import eu.webtoolkit.jwt.WApplication;
 
4
import eu.webtoolkit.jwt.WEnvironment;
 
5
import eu.webtoolkit.jwt.WtServlet;
 
6
 
 
7
public class Main extends WtServlet {
 
8
        /**
 
9
         * 
 
10
         */
 
11
        private static final long serialVersionUID = -7955893733032239397L;
 
12
 
 
13
        @Override
 
14
        public WApplication createApplication(WEnvironment env) {
 
15
                return new FigTreeWebApplication(env);
 
16
        }
 
17
 
 
18
}