package org.jmol.awtjs.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;
	}

}
