mirror of https://github.com/apache/poi.git
Fix usage of Generics in some classes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674964 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
894c74386e
commit
1c522adc6b
|
@ -114,16 +114,17 @@ public class AligningCells {
|
||||||
|
|
||||||
// Make the selection
|
// Make the selection
|
||||||
CTRowImpl ctRow = (CTRowImpl) row.getCTRow();
|
CTRowImpl ctRow = (CTRowImpl) row.getCTRow();
|
||||||
List spanList = new ArrayList();
|
|
||||||
|
|
||||||
// Add object with format start_coll:end_coll. For example 1:3 will span from
|
// Add object with format start_coll:end_coll. For example 1:3 will span from
|
||||||
// cell 1 to cell 3, where the column index starts with 0
|
// cell 1 to cell 3, where the column index starts with 0
|
||||||
//
|
//
|
||||||
// You can add multiple spans for one row
|
// You can add multiple spans for one row
|
||||||
Object span = start_column + ":" + end_column;
|
Object span = start_column + ":" + end_column;
|
||||||
|
|
||||||
|
List<Object> spanList = new ArrayList<Object>();
|
||||||
spanList.add(span);
|
spanList.add(span);
|
||||||
|
|
||||||
//add spns to the row
|
//add spns to the row
|
||||||
ctRow.setSpans(spanList);
|
ctRow.setSpans(spanList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -152,7 +152,7 @@ public final class Hyperlink {
|
||||||
* @return found hyperlinks or <code>null</code> if not found
|
* @return found hyperlinks or <code>null</code> if not found
|
||||||
*/
|
*/
|
||||||
protected static Hyperlink[] find(TextRun run){
|
protected static Hyperlink[] find(TextRun run){
|
||||||
ArrayList lst = new ArrayList();
|
List<Hyperlink> lst = new ArrayList<Hyperlink>();
|
||||||
SlideShow ppt = run.getSheet().getSlideShow();
|
SlideShow ppt = run.getSheet().getSlideShow();
|
||||||
//document-level container which stores info about all links in a presentation
|
//document-level container which stores info about all links in a presentation
|
||||||
ExObjList exobj = ppt.getDocumentRecord().getExObjList();
|
ExObjList exobj = ppt.getDocumentRecord().getExObjList();
|
||||||
|
@ -177,7 +177,7 @@ public final class Hyperlink {
|
||||||
* @return found hyperlink or <code>null</code>
|
* @return found hyperlink or <code>null</code>
|
||||||
*/
|
*/
|
||||||
protected static Hyperlink find(Shape shape){
|
protected static Hyperlink find(Shape shape){
|
||||||
ArrayList lst = new ArrayList();
|
List<Hyperlink> lst = new ArrayList<Hyperlink>();
|
||||||
SlideShow ppt = shape.getSheet().getSlideShow();
|
SlideShow ppt = shape.getSheet().getSlideShow();
|
||||||
//document-level container which stores info about all links in a presentation
|
//document-level container which stores info about all links in a presentation
|
||||||
ExObjList exobj = ppt.getDocumentRecord().getExObjList();
|
ExObjList exobj = ppt.getDocumentRecord().getExObjList();
|
||||||
|
@ -195,10 +195,10 @@ public final class Hyperlink {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return lst.size() == 1 ? (Hyperlink)lst.get(0) : null;
|
return lst.size() == 1 ? lst.get(0) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void find(Record[] records, ExObjList exobj, List out){
|
private static void find(Record[] records, ExObjList exobj, List<Hyperlink> out){
|
||||||
for (int i = 0; i < records.length; i++) {
|
for (int i = 0; i < records.length; i++) {
|
||||||
//see if we have InteractiveInfo in the textrun's records
|
//see if we have InteractiveInfo in the textrun's records
|
||||||
if( records[i] instanceof InteractiveInfo){
|
if( records[i] instanceof InteractiveInfo){
|
||||||
|
|
|
@ -150,25 +150,26 @@ public final class Table extends ShapeGroup {
|
||||||
|
|
||||||
protected void initTable(){
|
protected void initTable(){
|
||||||
Shape[] sh = getShapes();
|
Shape[] sh = getShapes();
|
||||||
Arrays.sort(sh, new Comparator(){
|
Arrays.sort(sh, new Comparator<Shape>(){
|
||||||
public int compare( Object o1, Object o2 ) {
|
public int compare( Shape o1, Shape o2 ) {
|
||||||
Rectangle anchor1 = ((Shape)o1).getAnchor();
|
Rectangle anchor1 = o1.getAnchor();
|
||||||
Rectangle anchor2 = ((Shape)o2).getAnchor();
|
Rectangle anchor2 = o2.getAnchor();
|
||||||
int delta = anchor1.y - anchor2.y;
|
int delta = anchor1.y - anchor2.y;
|
||||||
if(delta == 0) delta = anchor1.x - anchor2.x;
|
if(delta == 0) delta = anchor1.x - anchor2.x;
|
||||||
return delta;
|
return delta;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
int y0 = (sh.length > 0) ? sh[0].getAnchor().y - 1 : -1;
|
int y0 = (sh.length > 0) ? sh[0].getAnchor().y - 1 : -1;
|
||||||
int maxrowlen = 0;
|
int maxrowlen = 0;
|
||||||
ArrayList lst = new ArrayList();
|
List<List<Shape>> lst = new ArrayList<List<Shape>>();
|
||||||
ArrayList row = null;
|
List<Shape> row = null;
|
||||||
for (int i = 0; i < sh.length; i++) {
|
for (int i = 0; i < sh.length; i++) {
|
||||||
if(sh[i] instanceof TextShape){
|
if(sh[i] instanceof TextShape){
|
||||||
Rectangle anchor = sh[i].getAnchor();
|
Rectangle anchor = sh[i].getAnchor();
|
||||||
if(anchor.y != y0){
|
if(anchor.y != y0){
|
||||||
y0 = anchor.y;
|
y0 = anchor.y;
|
||||||
row = new ArrayList();
|
row = new ArrayList<Shape>();
|
||||||
lst.add(row);
|
lst.add(row);
|
||||||
}
|
}
|
||||||
row.add(sh[i]);
|
row.add(sh[i]);
|
||||||
|
@ -177,7 +178,7 @@ public final class Table extends ShapeGroup {
|
||||||
}
|
}
|
||||||
cells = new TableCell[lst.size()][maxrowlen];
|
cells = new TableCell[lst.size()][maxrowlen];
|
||||||
for (int i = 0; i < lst.size(); i++) {
|
for (int i = 0; i < lst.size(); i++) {
|
||||||
row = (ArrayList)lst.get(i);
|
row = lst.get(i);
|
||||||
for (int j = 0; j < row.size(); j++) {
|
for (int j = 0; j < row.size(); j++) {
|
||||||
TextShape tx = (TextShape)row.get(j);
|
TextShape tx = (TextShape)row.get(j);
|
||||||
cells[i][j] = new TableCell(tx.getSpContainer(), getParent());
|
cells[i][j] = new TableCell(tx.getSpContainer(), getParent());
|
||||||
|
|
|
@ -53,7 +53,7 @@ public class CHPBinTable
|
||||||
.getLogger( CHPBinTable.class );
|
.getLogger( CHPBinTable.class );
|
||||||
|
|
||||||
/** List of character properties.*/
|
/** List of character properties.*/
|
||||||
protected ArrayList<CHPX> _textRuns = new ArrayList<CHPX>();
|
protected List<CHPX> _textRuns = new ArrayList<CHPX>();
|
||||||
|
|
||||||
public CHPBinTable()
|
public CHPBinTable()
|
||||||
{
|
{
|
||||||
|
@ -498,7 +498,7 @@ public class CHPBinTable
|
||||||
int endingFc = translator.getByteIndex( _textRuns.get(
|
int endingFc = translator.getByteIndex( _textRuns.get(
|
||||||
_textRuns.size() - 1 ).getEnd() );
|
_textRuns.size() - 1 ).getEnd() );
|
||||||
|
|
||||||
ArrayList<CHPX> overflow = _textRuns;
|
List<CHPX> overflow = _textRuns;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
CHPX startingProp = overflow.get(0);
|
CHPX startingProp = overflow.get(0);
|
||||||
|
|
|
@ -38,11 +38,11 @@ public class SectionTable
|
||||||
private final static POILogger _logger = POILogFactory.getLogger(SectionTable.class);
|
private final static POILogger _logger = POILogFactory.getLogger(SectionTable.class);
|
||||||
private static final int SED_SIZE = 12;
|
private static final int SED_SIZE = 12;
|
||||||
|
|
||||||
protected ArrayList<SEPX> _sections = new ArrayList<SEPX>();
|
protected List<SEPX> _sections = new ArrayList<SEPX>();
|
||||||
protected List<TextPiece> _text;
|
protected List<TextPiece> _text;
|
||||||
|
|
||||||
/** So we can know if things are unicode or not */
|
/** So we can know if things are unicode or not */
|
||||||
private TextPieceTable tpt;
|
//private TextPieceTable tpt;
|
||||||
|
|
||||||
public SectionTable()
|
public SectionTable()
|
||||||
{
|
{
|
||||||
|
@ -54,7 +54,7 @@ public class SectionTable
|
||||||
TextPieceTable tpt, int mainLength)
|
TextPieceTable tpt, int mainLength)
|
||||||
{
|
{
|
||||||
PlexOfCps sedPlex = new PlexOfCps(tableStream, offset, size, SED_SIZE);
|
PlexOfCps sedPlex = new PlexOfCps(tableStream, offset, size, SED_SIZE);
|
||||||
this.tpt = tpt;
|
//this.tpt = tpt;
|
||||||
this._text = tpt.getTextPieces();
|
this._text = tpt.getTextPieces();
|
||||||
|
|
||||||
int length = sedPlex.length();
|
int length = sedPlex.length();
|
||||||
|
@ -160,7 +160,7 @@ public class SectionTable
|
||||||
// return FC;
|
// return FC;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
public ArrayList<SEPX> getSections()
|
public List<SEPX> getSections()
|
||||||
{
|
{
|
||||||
return _sections;
|
return _sections;
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,8 @@ import junit.framework.TestCase;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import org.apache.poi.hslf.usermodel.SlideShow;
|
import org.apache.poi.hslf.usermodel.SlideShow;
|
||||||
import org.apache.poi.hslf.record.TextHeaderAtom;
|
import org.apache.poi.hslf.record.TextHeaderAtom;
|
||||||
|
@ -73,7 +75,7 @@ public final class TestTextShape extends TestCase {
|
||||||
public void testRead() throws IOException {
|
public void testRead() throws IOException {
|
||||||
SlideShow ppt = new SlideShow(_slTests.openResourceAsStream("text_shapes.ppt"));
|
SlideShow ppt = new SlideShow(_slTests.openResourceAsStream("text_shapes.ppt"));
|
||||||
|
|
||||||
ArrayList lst1 = new ArrayList();
|
List<String> lst1 = new ArrayList<String>();
|
||||||
Slide slide = ppt.getSlides()[0];
|
Slide slide = ppt.getSlides()[0];
|
||||||
Shape[] shape = slide.getShapes();
|
Shape[] shape = slide.getShapes();
|
||||||
for (int i = 0; i < shape.length; i++) {
|
for (int i = 0; i < shape.length; i++) {
|
||||||
|
@ -110,7 +112,7 @@ public final class TestTextShape extends TestCase {
|
||||||
lst1.add(run.getText());
|
lst1.add(run.getText());
|
||||||
}
|
}
|
||||||
|
|
||||||
ArrayList lst2 = new ArrayList();
|
List<String> lst2 = new ArrayList<String>();
|
||||||
TextRun[] run = slide.getTextRuns();
|
TextRun[] run = slide.getTextRuns();
|
||||||
for (int i = 0; i < run.length; i++) {
|
for (int i = 0; i < run.length; i++) {
|
||||||
lst2.add(run[i].getText());
|
lst2.add(run[i].getText());
|
||||||
|
@ -160,7 +162,7 @@ public final class TestTextShape extends TestCase {
|
||||||
|
|
||||||
Slide slide = ppt.getSlides()[0];
|
Slide slide = ppt.getSlides()[0];
|
||||||
|
|
||||||
HashMap map = new HashMap();
|
Map<String, TextShape> map = new HashMap<String, TextShape>();
|
||||||
Shape[] shape = slide.getShapes();
|
Shape[] shape = slide.getShapes();
|
||||||
for (int i = 0; i < shape.length; i++) {
|
for (int i = 0; i < shape.length; i++) {
|
||||||
if(shape[i] instanceof TextShape){
|
if(shape[i] instanceof TextShape){
|
||||||
|
@ -171,25 +173,25 @@ public final class TestTextShape extends TestCase {
|
||||||
|
|
||||||
TextShape tx;
|
TextShape tx;
|
||||||
|
|
||||||
tx = (TextShape)map.get("TEST1");
|
tx = map.get("TEST1");
|
||||||
assertEquals(0.1, tx.getMarginLeft()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.1, tx.getMarginLeft()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.1, tx.getMarginRight()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.1, tx.getMarginRight()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.39, tx.getMarginTop()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.39, tx.getMarginTop()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.05, tx.getMarginBottom()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.05, tx.getMarginBottom()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
|
|
||||||
tx = (TextShape)map.get("TEST2");
|
tx = map.get("TEST2");
|
||||||
assertEquals(0.1, tx.getMarginLeft()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.1, tx.getMarginLeft()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.1, tx.getMarginRight()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.1, tx.getMarginRight()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.05, tx.getMarginTop()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.05, tx.getMarginTop()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.39, tx.getMarginBottom()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.39, tx.getMarginBottom()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
|
|
||||||
tx = (TextShape)map.get("TEST3");
|
tx = map.get("TEST3");
|
||||||
assertEquals(0.39, tx.getMarginLeft()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.39, tx.getMarginLeft()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.1, tx.getMarginRight()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.1, tx.getMarginRight()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.05, tx.getMarginTop()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.05, tx.getMarginTop()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.05, tx.getMarginBottom()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.05, tx.getMarginBottom()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
|
|
||||||
tx = (TextShape)map.get("TEST4");
|
tx = map.get("TEST4");
|
||||||
assertEquals(0.1, tx.getMarginLeft()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.1, tx.getMarginLeft()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.39, tx.getMarginRight()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.39, tx.getMarginRight()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
assertEquals(0.05, tx.getMarginTop()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
assertEquals(0.05, tx.getMarginTop()*Shape.EMU_PER_POINT/Shape.EMU_PER_INCH, 0.01);
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
package org.apache.poi.hwpf.model;
|
package org.apache.poi.hwpf.model;
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.util.ArrayList;
|
import java.util.List;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
|
@ -59,16 +59,16 @@ public final class TestCHPBinTable
|
||||||
|
|
||||||
CHPBinTable newBinTable = new CHPBinTable(newMainStream, newTableStream, 0, newTableStream.length, fakeTPT);
|
CHPBinTable newBinTable = new CHPBinTable(newMainStream, newTableStream, 0, newTableStream.length, fakeTPT);
|
||||||
|
|
||||||
ArrayList oldTextRuns = _cHPBinTable._textRuns;
|
List<CHPX> oldTextRuns = _cHPBinTable._textRuns;
|
||||||
ArrayList newTextRuns = newBinTable._textRuns;
|
List<CHPX> newTextRuns = newBinTable._textRuns;
|
||||||
|
|
||||||
assertEquals(oldTextRuns.size(), newTextRuns.size());
|
assertEquals(oldTextRuns.size(), newTextRuns.size());
|
||||||
|
|
||||||
int size = oldTextRuns.size();
|
int size = oldTextRuns.size();
|
||||||
for (int x = 0; x < size; x++)
|
for (int x = 0; x < size; x++)
|
||||||
{
|
{
|
||||||
PropertyNode oldNode = (PropertyNode)oldTextRuns.get(x);
|
CHPX oldNode = oldTextRuns.get(x);
|
||||||
PropertyNode newNode = (PropertyNode)newTextRuns.get(x);
|
CHPX newNode = newTextRuns.get(x);
|
||||||
assertTrue(oldNode.equals(newNode));
|
assertTrue(oldNode.equals(newNode));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ package org.apache.poi.hwpf.model;
|
||||||
import junit.framework.*;
|
import junit.framework.*;
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.util.ArrayList;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.poi.hwpf.*;
|
import org.apache.poi.hwpf.*;
|
||||||
import org.apache.poi.hwpf.model.io.*;
|
import org.apache.poi.hwpf.model.io.*;
|
||||||
|
@ -58,8 +58,8 @@ public final class TestSectionTable
|
||||||
newMainStream, newTableStream, 0,
|
newMainStream, newTableStream, 0,
|
||||||
newTableStream.length, 0, tpt, fib.getSubdocumentTextStreamLength( SubdocumentType.MAIN ));
|
newTableStream.length, 0, tpt, fib.getSubdocumentTextStreamLength( SubdocumentType.MAIN ));
|
||||||
|
|
||||||
ArrayList oldSections = sectionTable.getSections();
|
List<SEPX> oldSections = sectionTable.getSections();
|
||||||
ArrayList newSections = newSectionTable.getSections();
|
List<SEPX> newSections = newSectionTable.getSections();
|
||||||
|
|
||||||
assertEquals(oldSections.size(), newSections.size());
|
assertEquals(oldSections.size(), newSections.size());
|
||||||
|
|
||||||
|
@ -79,8 +79,8 @@ public final class TestSectionTable
|
||||||
int size = oldSections.size();
|
int size = oldSections.size();
|
||||||
for (int x = 0; x < size; x++)
|
for (int x = 0; x < size; x++)
|
||||||
{
|
{
|
||||||
PropertyNode oldNode = (PropertyNode)oldSections.get(x);
|
SEPX oldNode = oldSections.get(x);
|
||||||
PropertyNode newNode = (PropertyNode)newSections.get(x);
|
SEPX newNode = newSections.get(x);
|
||||||
assertEquals(oldNode, newNode);
|
assertEquals(oldNode, newNode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
package org.apache.poi.hwpf.usermodel;
|
package org.apache.poi.hwpf.usermodel;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.List;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ public final class TestRange extends TestCase
|
||||||
HWPFDocument hwpfDocument = new HWPFDocument( POIDataSamples
|
HWPFDocument hwpfDocument = new HWPFDocument( POIDataSamples
|
||||||
.getDocumentInstance().openResourceAsStream( "Bug46817.doc" ) );
|
.getDocumentInstance().openResourceAsStream( "Bug46817.doc" ) );
|
||||||
|
|
||||||
final ArrayList<SEPX> sections = hwpfDocument.getSectionTable()
|
final List<SEPX> sections = hwpfDocument.getSectionTable()
|
||||||
.getSections();
|
.getSections();
|
||||||
assertEquals( sections.size(), 1 );
|
assertEquals( sections.size(), 1 );
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@ public final class StreamUtility {
|
||||||
private static int[] diffInternal(InputStream isA, InputStream isB, int[] allowableDifferenceRegions)
|
private static int[] diffInternal(InputStream isA, InputStream isB, int[] allowableDifferenceRegions)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
List temp = new ArrayList();
|
List<Integer> temp = new ArrayList<Integer>();
|
||||||
while (true) {
|
while (true) {
|
||||||
int b = isA.read();
|
int b = isA.read();
|
||||||
int b2 = isB.read();
|
int b2 = isB.read();
|
||||||
|
@ -114,7 +114,7 @@ public final class StreamUtility {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int[] toPrimitiveIntArray(List temp) {
|
private static int[] toPrimitiveIntArray(List<Integer> temp) {
|
||||||
int nItems = temp.size();
|
int nItems = temp.size();
|
||||||
if(nItems < 1) {
|
if(nItems < 1) {
|
||||||
return null;
|
return null;
|
||||||
|
|
|
@ -142,7 +142,7 @@ public final class TestSmallDocumentBlock extends TestCase {
|
||||||
{
|
{
|
||||||
for (int j = 0; j <= 8; j++)
|
for (int j = 0; j <= 8; j++)
|
||||||
{
|
{
|
||||||
List foo = new ArrayList();
|
List<Object> foo = new ArrayList<Object>();
|
||||||
|
|
||||||
for (int k = 0; k < j; k++)
|
for (int k = 0; k < j; k++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue