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

com.openfin.desktop.PrinterInfo Maven / Gradle / Ivy

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

import org.json.JSONObject;

public class PrinterInfo extends JsonBean {

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

	public boolean isDefault() {
		return this.getBooleanValue("isDefault");
	}
	
	public String getName() {
		return this.getString("name");
	}
	
	public String getDisplayname() {
		return this.getString("displayName");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy