net.arnx.wmf2svg.gdi.svg.SvgPalette Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wmf2svg Show documentation
Show all versions of wmf2svg Show documentation
WMF to SVG Converting Tool & Library
The newest version!
package net.arnx.wmf2svg.gdi.svg;
import net.arnx.wmf2svg.gdi.GdiPalette;
class SvgPalette extends SvgObject implements GdiPalette {
private int version;
private int[] entries;
public SvgPalette(
SvgGdi gdi,
int version,
int[] entries) {
super(gdi);
this.version = version;
this.entries = entries;
}
public int getVersion() {
return version;
}
public int[] getEntries() {
return entries;
}
}