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

com.openfin.desktop.platform.ContextMenuSettings 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 ContextMenuSettings extends JsonBean {
	public ContextMenuSettings() {
	}

	public ContextMenuSettings(JSONObject json) {
		super(json);
	}
	
	public boolean isEnable() {
		return this.getBooleanValue("enable");
	}
	
	public void setEnable(boolean enable) {
		this.setBoolean("enable", enable);
	}
	
	public boolean isDevtools() {
		return this.getBooleanValue("devtools");
	}
	
	public void setDevtools(boolean devtools) {
		this.setBoolean("devtools", devtools);
	}

	public boolean isReload() {
		return this.getBooleanValue("reload");
	}
	
	public void setReload(boolean reload) {
		this.setBoolean("reload", reload);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy