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

com.openfin.desktop.platform.PlatformSnapshotOptions 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.JsonBean;

public class PlatformSnapshotOptions extends JsonBean {
	
	public PlatformSnapshotOptions() {
		super();
	}
	
	public PlatformSnapshotOptions(JSONObject json) {
		super(json);
	}
	
	public void setCloseExistingWindows(boolean b) {
		json.put("closeExistingWindows", b);
	}
	
	public boolean isCloseExistingWindows() {
		return json.optBoolean("closeExistingWindows", false);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy