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

org.swixml.XGridBagConstraints Maven / Gradle / Ivy

The newest version!
/*--
 $Id: XGridBagConstraints.java,v 1.1 2004/03/01 07:56:08 wolfpaulus Exp $

 Copyright (C) 2003-2007 Wolf Paulus.
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:

 1. Redistributions of source code must retain the above copyright
 notice, this list of conditions, and the following disclaimer.

 2. Redistributions in binary form must reproduce the above copyright
 notice, this list of conditions, and the disclaimer that follows
 these conditions in the documentation and/or other materials provided
 with the distribution.

 3. The end-user documentation included with the redistribution,
 if any, must include the following acknowledgment:
        "This product includes software developed by the
         SWIXML Project (http://www.swixml.org/)."
 Alternately, this acknowledgment may appear in the software itself,
 if and wherever such third-party acknowledgments normally appear.

 4. The name "Swixml" must not be used to endorse or promote products
 derived from this software without prior written permission. For
 written permission, please contact 

 5. Products derived from this software may not be called "Swixml",
 nor may "Swixml" appear in their name, without prior written
 permission from the Swixml Project Management.

 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED.  IN NO EVENT SHALL THE SWIXML PROJECT OR ITS
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
 ====================================================================

 This software consists of voluntary contributions made by many
 individuals on behalf of the Swixml Project and was originally
 created by Wolf Paulus . For more information
 on the Swixml Project, please see .
*/
package org.swixml;

import java.awt.*;

/**
 * XGridBagConstraints simple extends GridBagConstraints to
 * make bean style getters and setters available for all public fields in the GridBagConstraints class.
 *
 * @author Wolf Paulus
 * @version $Revision: 1.1 $
 */
@SuppressWarnings("serial")
public class XGridBagConstraints extends GridBagConstraints {

  public int getAnchor() {
    return anchor;
  }

  public void setAnchor(int anchor) {
    this.anchor = anchor;
  }

  public int getFill() {
    return fill;
  }

  public void setFill(int fill) {
    this.fill = fill;
  }

  public int getGridheight() {
    return gridheight;
  }

  public void setGridheight(int gridheight) {
    this.gridheight = gridheight;
  }

  public int getGridwidth() {
    return gridwidth;
  }

  public void setGridwidth(int gridwidth) {
    this.gridwidth = gridwidth;
  }

  public int getGridx() {
    return gridx;
  }

  public void setGridx(int gridx) {
    this.gridx = gridx;
  }

  public int getGridy() {
    return gridy;
  }

  public void setGridy(int gridy) {
    this.gridy = gridy;
  }

  public Insets getInsets() {
    return insets;
  }

  public void setInsets(Insets insets) {
    this.insets = insets;
  }

  public int getIpadx() {
    return ipadx;
  }

  public void setIpadx(int ipadx) {
    this.ipadx = ipadx;
  }

  public int getIpady() {
    return ipady;
  }

  public void setIpady(int ipady) {
    this.ipady = ipady;
  }

  public double getWeightx() {
    return weightx;
  }

  public void setWeightx(double weightx) {
    this.weightx = weightx;
  }

  public double getWeighty() {
    return weighty;
  }

  public void setWeighty(double weighty) {
    this.weighty = weighty;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy