Lines Matching refs:n

118 		for ( int n = 0; n < aTable.getRowCount() ; n++ ){  in clearAllRows()
119 aTable.setValueAt( null , n , 0 ); in clearAllRows()
120 aTable.setValueAt( null , n , 1 ); in clearAllRows()
121 aTable.setValueAt( null , n , 2 ); in clearAllRows()
122 aTable.setValueAt( null , n , 3 ); in clearAllRows()
123 aTable.setValueAt( null , n , 4 ); in clearAllRows()
132 for ( int n = 1; n < recTable.getRowCount() ; n++ ){ in updateData()
133 String lang = (String) recTable.getValueAt(n , 0 ); in updateData()
134 String text = (String) recTable.getValueAt(n , 1 ); in updateData()
135 String htext = (String) recTable.getValueAt(n , 2 ); in updateData()
136 String qhtext = (String) recTable.getValueAt(n , 3 ); in updateData()
137 String ttext = (String) recTable.getValueAt(n , 4 ); in updateData()
172 for( int n = 0; n < values.size() ; n++ ) in initView()
174 SdfEntity aEntity = (SdfEntity) values.get( n ); in initView()
175 firstData[ n+1 ][ 0 ] = aEntity.getLangid(); in initView()
176 firstData[ n+1 ][ 1 ] = aEntity.getText(); in initView()
177 firstData[ n+1 ][ 2 ] = aEntity.getHelptext(); in initView()
178 firstData[ n+1 ][ 3 ] = aEntity.getQuickhelptext(); in initView()
179 firstData[ n+1 ][ 4 ] = aEntity.getTitle(); in initView()
276 for( int n = 0; n < values.size() ; n++ ) in initView()
278 SdfEntity aEntity = (SdfEntity) values.get( n ); in initView()
279 recTable.setValueAt( aEntity.getLangid() , n+1 , 0 ); in initView()
280 recTable.setValueAt( aEntity.getText() , n+1 , 1 ); in initView()
281 recTable.setValueAt( aEntity.getHelptext() , n+1 , 2 ); in initView()
282 recTable.setValueAt( aEntity.getQuickhelptext() , n+1 , 3 ); in initView()
283 recTable.setValueAt( aEntity.getTitle() , n+1 , 4 ); in initView()