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 class Linux extends X11 { 8 private native void fixEnvironment(); 9 10 public Linux() { 11 fixEnvironment(); 12 } 13 14 } 15