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

com.openfin.desktop.platform.PlatformOptions 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.ApplicationOptions;

public class PlatformOptions extends ApplicationOptions {

	public PlatformOptions(String uuid) {
		super(uuid, uuid, null);
		super.put("isPlatformController", true);
	}
	
	public PlatformOptions(JSONObject json) {
		super(json);
	}
	
	public void setDefaultViewOptions(PlatformViewOptions viewOpts) {
		super.put("defaultViewOptions", viewOpts.getJsonCopy());
	}
	
	public void setDefaultWindowOptions(PlatformWindowOptions winOpts) {
		super.put("defaultWindowOptions", winOpts.getJsonCopy());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy