mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-27 08:59:10 +08:00
2ed885df76
* gnu/gcj/awt/BitMaskExtent.java, gnu/gcj/awt/Buffers.java, gnu/gcj/awt/ComponentDataBlitOp.java, gnu/gcj/awt/GLightweightPeer.java, java/awt/Graphics2D.java, java/awt/RenderingHints.java, java/awt/color/ColorSpace.java, java/awt/color/ICC_ColorSpace.java, java/awt/color/ICC_Profile.java, java/awt/image/BufferedImage.java, java/awt/image/ColorModel.java, java/awt/image/ComponentColorModel.java, java/awt/image/ComponentSampleModel.java, java/awt/image/DataBuffer.java, java/awt/image/DataBufferByte.java, java/awt/image/DataBufferInt.java, java/awt/image/DataBufferUShort.java, java/awt/image/DirectColorModel.java, java/awt/image/IndexColorModel.java, java/awt/image/PackedColorModel.java, java/awt/image/Raster.java, java/awt/image/RasterOp.java, java/awt/image/SampleModel.java, java/awt/image/SinglePixelPackedSampleModel.java, java/awt/image/WritableRaster.java, java/util/zip/ZipFile.java: Removed Latin-1 copyright symbols. * java/util/zip/ZipFile.java: Indentation fixes. From-SVN: r36027
135 lines
2.4 KiB
Java
135 lines
2.4 KiB
Java
/* 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.awt;
|
|
|
|
import java.awt.*;
|
|
import java.awt.peer.*;
|
|
import java.awt.image.*;
|
|
|
|
/**
|
|
* @author Rolf W. Rasmussen <rolfwr@ii.uib.no>
|
|
*/
|
|
public class GLightweightPeer implements LightweightPeer
|
|
{
|
|
public static final GLightweightPeer INSTANCE = new GLightweightPeer();
|
|
|
|
public GLightweightPeer() {}
|
|
|
|
// -------- java.awt.peer.ComponentPeer implementation:
|
|
|
|
public int checkImage(Image img, int width, int height, ImageObserver o)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public Image createImage(ImageProducer prod)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public Image createImage(int width, int height)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void disable() {}
|
|
|
|
public void dispose() {}
|
|
|
|
public void enable() {}
|
|
|
|
public GraphicsConfiguration getGraphicsConfiguration()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public FontMetrics getFontMetrics(Font f)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public Graphics getGraphics()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public Point getLocationOnScreen()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public Dimension getMinimumSize()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public Dimension getPreferredSize()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public Toolkit getToolkit()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void handleEvent(AWTEvent e) {}
|
|
|
|
public void hide() {}
|
|
|
|
public boolean isFocusTraversable()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public Dimension minimumSize()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public Dimension preferredSize()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void paint(Graphics graphics) {}
|
|
|
|
public boolean prepareImage(Image img, int width, int height,
|
|
ImageObserver o)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public void print(Graphics graphics) {}
|
|
|
|
public void repaint(long tm, int x, int y, int width, int height) {}
|
|
|
|
public void requestFocus() {}
|
|
|
|
public void reshape(int x, int y, int width, int height) {}
|
|
|
|
public void setBackground(Color color) {}
|
|
|
|
public void setBounds(int x, int y, int width, int height) {}
|
|
|
|
public void setCursor(Cursor cursor) {}
|
|
|
|
public void setEnabled(boolean enabled) {}
|
|
|
|
public void setEventMask(long eventMask) {}
|
|
|
|
public void setFont(Font font) {}
|
|
|
|
public void setForeground(Color color) {}
|
|
|
|
public void setVisible(boolean visible) {}
|
|
|
|
public void show() {}
|
|
}
|