本文整理汇总了Java中java.awt.GridBagConstraints.clone方法的典型用法代码示例。如果您正苦于以下问题:Java GridBagConstraints.clone方法的具体用法?Java GridBagConstraints.clone怎么用?Java GridBagConstraints.clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.awt.GridBagConstraints
的用法示例。
在下文中一共展示了GridBagConstraints.clone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addLabeledComponentToGBL
import java.awt.GridBagConstraints; //导入方法依赖的package包/类
private void addLabeledComponentToGBL( String name,
JComponent c,
GridBagLayout gbl,
GridBagConstraints gbc,
Container target ) {
LabelV2 l = new LabelV2( name );
GridBagConstraints gbcLabel = (GridBagConstraints) gbc.clone();
gbcLabel.insets = new Insets( 2, 2, 2, 0 );
gbcLabel.gridwidth = 1;
gbcLabel.weightx = 0;
if ( c == null )
c = new JLabel( "" );
gbl.setConstraints( l, gbcLabel );
target.add( l );
gbl.setConstraints( c, gbc );
target.add( c );
}
示例2: makeGrid
import java.awt.GridBagConstraints; //导入方法依赖的package包/类
public static JPanel makeGrid(int cols, GridBagConstraints template, Container... containers) {
JPanel ans = new JPanel(new GridBagLayout());
int i = -1;
for (Container container : containers) {
for (Component comp : container.getComponents()) {
i++;
GridBagConstraints c = (GridBagConstraints) template.clone();
c.gridx = i % cols;
c.gridy = i / cols;
ans.add(comp, c);
}
}
return ans;
}