All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.awt.font.FontRenderContext Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package java.awt.font;

import java.awt.geom.AffineTransform;

public class FontRenderContext {
	protected FontRenderContext() {
	}

	public FontRenderContext(AffineTransform tx, boolean isAntiAliased, boolean usesFractionalMetrics) {
	}

	public FontRenderContext(AffineTransform tx, Object aaHint, Object fmHint) {
	}

	native public boolean isTransformed();

	native public int getTransformType();

	native public AffineTransform getTransform();

	native public boolean isAntiAliased();

	native public boolean usesFractionalMetrics();

	native public Object getAntiAliasingHint();

	native public Object getFractionalMetricsHint();

	native public boolean equals(Object obj);

	native public boolean equals(FontRenderContext rhs);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy