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

javajs.swing.Insets Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package javajs.swing;

public class Insets {

	int top, left, bottom, right;
	
	public Insets(int top, int left, int bottom, int right) {
		this.top = top;
		this.left = left;
		this.bottom = bottom;
		this.right = right;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy