📄 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 + -