com.actelion.research.gui.generic.GenericImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.gui.generic;
public interface GenericImage {
void scale(int width, int height);
Object get();
int getWidth();
int getHeight();
int getRGB(int x, int y);
void setRGB(int x, int y, int argb);
}