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

com.openfin.desktop.platform.PlatformWindowOptions Maven / Gradle / Ivy

There is a newer version: 11.0.2
Show newest version
package com.openfin.desktop.platform;

import org.json.JSONObject;

import com.openfin.desktop.WindowOptions;

public class PlatformWindowOptions extends WindowOptions {
	
	public PlatformWindowOptions() {
		super();
	}

	public PlatformWindowOptions(JSONObject json) {
		super(json);
	}

	public String getStylesheetUrl() {
		return json.optString("stylesheetUrl", null);
	}

	public void setStylesheetUrl(String stylesheetUrl) {
		json.put("stylesheetUrl", stylesheetUrl);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy