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

nu.zoom.swing.desktop.frame.FrameVisualPreferences Maven / Gradle / Ivy

package nu.zoom.swing.desktop.frame;

class FrameVisualPreferences {
	private Integer width;

	private Integer height;

	private Integer positionx;

	private Integer positiony;

	FrameVisualPreferences(Integer width, Integer height, Integer positionx,
			Integer positiony) {
		this.width = width;
		this.height = height;
		this.positionx = positionx;
		this.positiony = positiony;
	}

	/**
	 * @return the height
	 */
	public Integer getHeight() {
		return height;
	}

	/**
	 * @return the positionx
	 */
	public Integer getPositionx() {
		return positionx;
	}

	/**
	 * @return the positiony
	 */
	public Integer getPositiony() {
		return positiony;
	}

	/**
	 * @return the width
	 */
	public Integer getWidth() {
		return width;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy