Insets.java :  » J2ME » Persian-Mobile-Dictionary » pmd » gui » border » Java Open Source

Java Open Source » J2ME » Persian Mobile Dictionary 
Persian Mobile Dictionary » pmd » gui » border » Insets.java
/* 
 * Copyright (c) 2007, persianmobidict.sourceforge.net
 * Released under the GNU General Public License
 */

package pmd.gui.border;

/**
 *
 * @author  Hooman Valibeigi
 */
public class Insets {
    
    public int top;
    public int left;
    public int bottom;
    public int right;
    
    
    public Insets(int top, int left, int bottom, int right) {
        this.top = top;
        this.left = left;
        this.bottom = bottom;
        this.right = right;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.