Lines Matching defs:columns
91 * default, and the number of columns to 0.
101 * number of columns. A default model is created, and the initial string
104 * @param columns the number of columns >= 0
106 public JPasswordField(int columns) {
107 this(null, null, columns);
112 * the specified text and columns. The document model is set to
116 * @param columns the number of columns >= 0
118 public JPasswordField(String text, int columns) {
119 this(null, text, columns);
124 * given text storage model and the given number of columns.
132 * @param columns the number of columns to use to calculate
133 * the preferred width >= 0; if columns is set to zero, the
137 public JPasswordField(Document doc, String txt, int columns) {
138 super(doc, txt, columns);