?? gridbagconstraintsdefine.java
字號:
package jp.co.ntl.awt;
import java.awt.GridBagConstraints;
import java.awt.Insets;
public class GridBagConstraintsDefine extends GridBagConstraints {
/**
*
*/
private static final long serialVersionUID = 1L;
public GridBagConstraintsDefine(int gridx, int gridy, int gridwidth, int gridheight, double weightx, double weighty, int anchor, int fill, Insets insets, int ipadx, int ipady)
{
this.gridx = gridx;
this.gridy = gridy;
this.gridwidth = gridwidth;
this.gridheight = gridheight;
this.weightx = weightx;
this.weighty = weighty;
this.anchor = anchor;
this.fill = fill;
this.insets = insets;
this.ipadx = ipadx;
this.ipady = ipady;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -