⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dvbbufferedimage.java

📁 MHP java class for Interactive TV use
💻 JAVA
字号:

package org.dvb.ui;


public class DVBBufferedImage extends java.awt.Image {

	public static final int TYPE_ADVANCED = 20;
	public static final int TYPE_BASE = 21;

	private java.awt.Graphics graphics;
	private int height;
	private java.awt.Image image;
	private java.awt.image.ImageProducer source;
	private int width;

	public DVBBufferedImage(int width, int height) {
	}

	public DVBBufferedImage(int width, int height, int type) {
	}

	public DVBGraphics createGraphics() {
		return null;
	}

	public void flush() {
	}

	public java.awt.Graphics getGraphics() {
		return this.graphics;
	}

	public int getHeight() {
		return this.height;
	}

	public int getHeight(java.awt.image.ImageObserver observer) {
		return 0;
	}

	public java.awt.Image getImage() {
		return this.image;
	}

	public void dispose() {
	}

	public java.lang.Object getProperty(java.lang.String name, java.awt.image.ImageObserver observer) {
		return null;
	}

	public int getRGB(int x, int y) {
		return 0;
	}

	public int[] getRGB(int startX, int startY, int w, int h, int[] rgbArray, int offset, int scansize) {
		return null;
	}

	public java.awt.image.ImageProducer getSource() {
		return this.source;
	}

	public DVBBufferedImage getSubimage(int x, int y, int w, int h) throws DVBRasterFormatException {
		return null;
	}

	public int getWidth() {
		return this.width;
	}

	public int getWidth(java.awt.image.ImageObserver observer) {
		return 0;
	}

	public void setRGB(int x, int y, int rgb) {
	}

	public void setRGB(int startX, int startY, int w, int h, int[] rgbArray, int offset, int scansize) {
	}

	public java.lang.String toString() {
		return null;
	}

	public java.awt.Image getScaledInstance(int width, int height, int hints) {
		return null;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -