Searched defs:numCols (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DBreakDictionary.java82 private int numCols; field in class:BreakDictionary
203 // read in numCols and numColGroups
204 numCols = BreakIterator.getInt(buf, offset);
339 return table[row * numCols + col];
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DInsertRow.java64 * @param numCols an <code>int</code> indicating the number of columns
67 public InsertRow(int numCols) { argument
68 origVals = new Object[numCols];
69 colsInserted = new BitSet(numCols);
70 cols = numCols;
H A DRow.java94 private int numCols; field in class:Row
102 public Row(int numCols) { argument
103 origVals = new Object[numCols];
104 currentVals = new Object[numCols];
105 colsChanged = new BitSet(numCols);
106 this.numCols = numCols;
116 public Row(int numCols, Object[] vals) { argument
117 origVals = new Object[numCols];
118 for (int i=0; i < numCols;
[all...]

Completed in 42 milliseconds