X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=libjava%2Fgnu%2Fgcj%2Fxlib%2FXColor.java;fp=libjava%2Fgnu%2Fgcj%2Fxlib%2FXColor.java;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=74ad6d7071a1acb7c2202795c9053e07d6208910;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libjava/gnu/gcj/xlib/XColor.java b/libjava/gnu/gcj/xlib/XColor.java deleted file mode 100644 index 74ad6d70..00000000 --- a/libjava/gnu/gcj/xlib/XColor.java +++ /dev/null @@ -1,42 +0,0 @@ -/* Copyright (C) 2000 Free Software Foundation - - This file is part of libgcj. - -This software is copyrighted work licensed under the terms of the -Libgcj License. Please consult the file "LIBGCJ_LICENSE" for -details. */ - -package gnu.gcj.xlib; - -import gnu.gcj.RawData; - -/** - * A color or color-cell on the X server. - * - * @author Rolf W. Rasmussen - */ -public final class XColor -{ - public XColor(int r, int g, int b) - { - this(); - setRGB(r, g, b); - } - - public XColor() - { - init(); - } - - private native void init(); - protected native void finalize(); - - public final native void setRGB(int r, int g, int b); - public final native int getRed(); - public final native int getGreen(); - public final native int getBlue(); - public final native byte getFlags(); - public final native long getPixelValue(); - - RawData structure = null; -}