tablelayoutconstants.java
来自「人力资源管理信息系统 论文和源代码 人力资源管理系统由人事管理、考勤管理、招聘」· Java 代码 · 共 56 行
JAVA
56 行
package net.sf.hibern8ide.swing;/** * Constants used by TableLayout. * * @author Daniel E. Barbalace */public interface TableLayoutConstants{/** Indicates that the component is left justified in its cell */public static final int LEFT = 0;/** Indicates that the component is top justified in its cell */public static final int TOP = 0;/** Indicates that the component is centered in its cell */public static final int CENTER = 1;/** Indicates that the component is full justified in its cell */public static final int FULL = 2;/** Indicates that the component is bottom justified in its cell */public static final int BOTTOM = 3;/** Indicates that the component is right justified in its cell */public static final int RIGHT = 3;/** Indicates that the row/column should fill the available space */public static final double FILL = -1.0;/** Indicates that the row/column should be allocated just enough space to accomidate the preferred size of all components contained completely within this row/column. */public static final double PREFERRED = -2.0;/** Indicates that the row/column should be allocated just enough space to accomidate the minimum size of all components contained completely within this row/column. */public static final double MINIMUM = -3.0;/** Minimum value for an alignment */public static final int MIN_ALIGN = 0;/** Maximum value for an alignment */public static final int MAX_ALIGN = 3;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?