@@ -177,7 +177,7 @@ public class RtfSink
177
177
178
178
private int charSet = DEFAULT_CHAR_SET ;
179
179
180
- private final Hashtable fontTable ;
180
+ private final Hashtable < String , Font > fontTable ;
181
181
182
182
private Context context ;
183
183
@@ -189,9 +189,9 @@ public class RtfSink
189
189
190
190
private int listItemIndent ;
191
191
192
- private final Vector numbering ;
192
+ private final Vector < Integer > numbering ;
193
193
194
- private final Vector itemNumber ;
194
+ private final Vector < Counter > itemNumber ;
195
195
196
196
private int style = STYLE_ROMAN ;
197
197
@@ -220,7 +220,7 @@ public class RtfSink
220
220
221
221
/** Map of warn messages with a String as key to describe the error type and a Set as value.
222
222
* Using to reduce warn messages. */
223
- private Map warnMessages ;
223
+ private Map < String , Set < String >> warnMessages ;
224
224
225
225
// -----------------------------------------------------------------------
226
226
@@ -252,14 +252,14 @@ protected RtfSink( OutputStream output )
252
252
*
253
253
* @param output not null
254
254
* @param encoding a valid charset
255
- * @throws java.io.IOException if any.
255
+ * @throws java.io.IOException if any
256
256
*/
257
257
protected RtfSink ( OutputStream output , String encoding )
258
258
throws IOException
259
259
{
260
- this .fontTable = new Hashtable ();
261
- this .numbering = new Vector ();
262
- this .itemNumber = new Vector ();
260
+ this .fontTable = new Hashtable <> ();
261
+ this .numbering = new Vector <> ();
262
+ this .itemNumber = new Vector <> ();
263
263
264
264
Writer w ;
265
265
this .stream = new BufferedOutputStream ( output );
@@ -1351,7 +1351,7 @@ private void writeImage( String source )
1351
1351
bytesPerLine = 4 * ( ( srcWidth + 3 ) / 4 );
1352
1352
byte [] bitmap = new byte [srcHeight * bytesPerLine ];
1353
1353
1354
- Vector colors = new Vector ( 256 );
1354
+ Vector < Color > colors = new Vector <> ( 256 );
1355
1355
colors .addElement ( Color .white );
1356
1356
colors .addElement ( Color .black );
1357
1357
@@ -1920,16 +1920,13 @@ public void close()
1920
1920
1921
1921
if ( getLog ().isWarnEnabled () && this .warnMessages != null )
1922
1922
{
1923
- for ( Object o1 : this .warnMessages .entrySet () )
1923
+ for ( Map . Entry < String , Set < String >> entry : this .warnMessages .entrySet () )
1924
1924
{
1925
- Map .Entry entry = (Map .Entry ) o1 ;
1926
1925
1927
- Set set = ( Set ) entry .getValue ();
1926
+ Set < String > set = entry .getValue ();
1928
1927
1929
- for ( Object o : set )
1928
+ for ( String msg : set )
1930
1929
{
1931
- String msg = (String ) o ;
1932
-
1933
1930
getLog ().warn ( msg );
1934
1931
}
1935
1932
}
@@ -1960,13 +1957,13 @@ private void logMessage( String key, String msg )
1960
1957
1961
1958
if ( warnMessages == null )
1962
1959
{
1963
- warnMessages = new HashMap ();
1960
+ warnMessages = new HashMap <> ();
1964
1961
}
1965
1962
1966
- Set set = ( Set ) warnMessages .get ( key );
1963
+ Set < String > set = warnMessages .get ( key );
1967
1964
if ( set == null )
1968
1965
{
1969
- set = new TreeSet ();
1966
+ set = new TreeSet <> ();
1970
1967
}
1971
1968
set .add ( msg );
1972
1969
warnMessages .put ( key , set );
@@ -2039,7 +2036,7 @@ static class Context
2039
2036
{
2040
2037
private int context = CONTEXT_UNDEFINED ;
2041
2038
2042
- private Vector stack = new Vector ();
2039
+ private Vector < Integer > stack = new Vector <> ();
2043
2040
2044
2041
void set ( int context )
2045
2042
{
@@ -2051,7 +2048,7 @@ void restore()
2051
2048
{
2052
2049
if ( !stack .isEmpty () )
2053
2050
{
2054
- context = ( Integer ) stack .lastElement ();
2051
+ context = stack .lastElement ();
2055
2052
stack .removeElementAt ( stack .size () - 1 );
2056
2053
}
2057
2054
}
@@ -2172,7 +2169,7 @@ class Space
2172
2169
2173
2170
private int next ;
2174
2171
2175
- private Vector stack = new Vector ();
2172
+ private Vector < Integer > stack = new Vector <> ();
2176
2173
2177
2174
Space ( int space /*twips*/ )
2178
2175
{
@@ -2196,7 +2193,7 @@ void restore()
2196
2193
{
2197
2194
if ( !stack .isEmpty () )
2198
2195
{
2199
- space = ( Integer ) stack .lastElement ();
2196
+ space = stack .lastElement ();
2200
2197
stack .removeElementAt ( stack .size () - 1 );
2201
2198
next = space ;
2202
2199
}
@@ -2234,7 +2231,7 @@ static class Indentation
2234
2231
{
2235
2232
private int indent ;
2236
2233
2237
- private Vector stack = new Vector ();
2234
+ private Vector < Integer > stack = new Vector <> ();
2238
2235
2239
2236
Indentation ( int indent /*twips*/ )
2240
2237
{
@@ -2256,7 +2253,7 @@ void restore()
2256
2253
{
2257
2254
if ( !stack .isEmpty () )
2258
2255
{
2259
- indent = ( Integer ) stack .lastElement ();
2256
+ indent = stack .lastElement ();
2260
2257
stack .removeElementAt ( stack .size () - 1 );
2261
2258
}
2262
2259
}
@@ -2277,15 +2274,15 @@ static class Table
2277
2274
2278
2275
boolean grid ;
2279
2276
2280
- Vector rows ;
2277
+ Vector < Row > rows ;
2281
2278
2282
2279
Table ( int [] justification , boolean grid )
2283
2280
{
2284
2281
numColumns = justification .length ;
2285
2282
columnWidths = new int [numColumns ];
2286
2283
this .justification = justification ;
2287
2284
this .grid = grid ;
2288
- rows = new Vector ();
2285
+ rows = new Vector <> ();
2289
2286
}
2290
2287
2291
2288
void add ( Row row )
@@ -2298,7 +2295,7 @@ void add( Row row )
2298
2295
{
2299
2296
break ;
2300
2297
}
2301
- Cell cell = ( Cell ) row .cells .elementAt ( i );
2298
+ Cell cell = row .cells .elementAt ( i );
2302
2299
int width = cell .boundingBox ().width ;
2303
2300
if ( width > columnWidths [i ] )
2304
2301
{
@@ -2324,7 +2321,7 @@ int width()
2324
2321
2325
2322
static class Row
2326
2323
{
2327
- Vector cells = new Vector ();
2324
+ Vector < Cell > cells = new Vector <> ();
2328
2325
2329
2326
void add ( Cell cell )
2330
2327
{
@@ -2337,7 +2334,7 @@ int height()
2337
2334
int numCells = cells .size ();
2338
2335
for ( int i = 0 ; i < numCells ; ++i )
2339
2336
{
2340
- Cell cell = ( Cell ) cells .elementAt ( i );
2337
+ Cell cell = cells .elementAt ( i );
2341
2338
Box box = cell .boundingBox ();
2342
2339
if ( box .height > height )
2343
2340
{
@@ -2350,7 +2347,7 @@ int height()
2350
2347
2351
2348
class Cell
2352
2349
{
2353
- Vector lines = new Vector ();
2350
+ Vector < Line > lines = new Vector <> ();
2354
2351
2355
2352
void add ( Line line )
2356
2353
{
@@ -2403,7 +2400,7 @@ Box boundingBox()
2403
2400
2404
2401
static class Line
2405
2402
{
2406
- Vector items = new Vector ();
2403
+ Vector < Item > items = new Vector <> ();
2407
2404
2408
2405
void add ( Item item )
2409
2406
{
0 commit comments