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

org.webswing.toolkit.ge.WebGraphicsEnvironment8 Maven / Gradle / Ivy

The newest version!
package org.webswing.toolkit.ge;

import org.webswing.Constants;

import sun.awt.FontConfiguration;

@SuppressWarnings("restriction")
public class WebGraphicsEnvironment8 extends WebGraphicsEnvironment {

	public WebGraphicsEnvironment8() {
		if (hasFontConfiguration()) {
			System.setProperty("sun.awt.fontconfig",System.getProperty(Constants.SWING_START_SYS_PROP_FONT_CONFIG));
			System.setProperty("sun.font.fontmanager", WebFontManager.class.getName());
		}

	}

	public FontConfiguration createFontConfiguration(boolean b1, boolean b2) {
		return null; //not used in java8 (see WebFontManager) 
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy