029d6b54b5b3490888e8eabf2c8f99f5e2376580
[org.ibex.core.git] / src / org / xwt / plat / Linux.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt.plat;
3
4 import org.xwt.*;
5
6 /** Linux with an X11 display */
7 public abstract class Linux extends X11 {
8     private static thisClass = Linux.class;
9     public static void main(String[] s) throws Exception { Main.main(s); }
10
11     private native void fixEnvironment();
12
13     public Linux() {
14         fixEnvironment();
15     }
16
17 }