summaryrefslogtreecommitdiff
path: root/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-28 15:19:57 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-29 22:03:04 +0200
commitcde7ccee856ad515f0e6f0afe2b1503cf44fb8aa (patch)
treea6a9c691c4c8499158fad54e4b8584b97db37e80 /framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java
parent3fba4e261f9fef7f1bcdf9af36ac96135f26705f (diff)
Java5 update - use generics where it makes sense
Change-Id: I3e60bd33127105c1d9da1bb25cea16355850d3fd
Diffstat (limited to 'framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java')
-rw-r--r--framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java b/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java
index ba6d8250555c..95a8fa591cd4 100644
--- a/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java
+++ b/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java
@@ -114,7 +114,7 @@ public class CheckXComponentLoader
private String m_sTestDocPath = null;
/** files of m_sTestDocPath to test. */
- private static ArrayList m_lTestFiles = null;
+ private static ArrayList<String> m_lTestFiles = null;
//-------------------------------------------
// test environment
@@ -187,18 +187,18 @@ public class CheckXComponentLoader
// get all files from the given directory
// TODO URLHelper should ignore directories!
- m_lTestFiles = new ArrayList();
+ m_lTestFiles = new ArrayList<String>();
final String sTestDocURL = OfficeFileUrl.getAbsolute(new File("testdocuments"));
m_sTestDocPath = graphical.FileHelper.getSystemPathFromFileURL(sTestDocURL);
try
{
- File aBaseDir = new File(m_sTestDocPath);
- List lDirContent = URLHelper.getSystemFilesFromDir(aBaseDir.getPath());
- Iterator lList = lDirContent.iterator();
- int nBasePathLength = m_sTestDocPath.length();
+ File aBaseDir = new File(m_sTestDocPath);
+ List<File> lDirContent = URLHelper.getSystemFilesFromDir(aBaseDir.getPath());
+ Iterator<File> lList = lDirContent.iterator();
+ int nBasePathLength = m_sTestDocPath.length();
while(lList.hasNext())
{
- File aFile = (File)lList.next();
+ File aFile = lList.next();
// ignore broken links and directories at all
if (
@@ -266,10 +266,10 @@ public class CheckXComponentLoader
lProps[2].Name = "StatusIndicator";
lProps[2].Value = xIndicator;
- Iterator aSnapshot = m_lTestFiles.iterator();
+ Iterator<String> aSnapshot = m_lTestFiles.iterator();
while (aSnapshot.hasNext())
{
- File aSysFile = new File(m_sTestDocPath, (String)aSnapshot.next());
+ File aSysFile = new File(m_sTestDocPath, aSnapshot.next());
String sURL = URLHelper.getFileURLFromSystemPath(aSysFile);
if (/*! (sURL.endsWith(".jpg") ||
@@ -424,11 +424,11 @@ public class CheckXComponentLoader
// get a file name as byte array
- Iterator aSnapshot = m_lTestFiles.iterator();
+ Iterator<String> aSnapshot = m_lTestFiles.iterator();
byte[] baURL = null;
while (aSnapshot.hasNext()) {
- File aFile = new File(m_sTestDocPath, (String)aSnapshot.next());
+ File aFile = new File(m_sTestDocPath, aSnapshot.next());
String sFile = URLHelper.getFileURLFromSystemPath(aFile);
// take the first sxw file as stream
@@ -591,10 +591,10 @@ public class CheckXComponentLoader
lProps[1] = new PropertyValue();
lProps[1].Name = "InputStream";
- Iterator aSnapshot = m_lTestFiles.iterator();
+ Iterator<String> aSnapshot = m_lTestFiles.iterator();
while (aSnapshot.hasNext())
{
- File aFile = new File(m_sTestDocPath, (String) aSnapshot.next());
+ File aFile = new File(m_sTestDocPath, aSnapshot.next());
String sURL = URLHelper.getFileURLFromSystemPath(aFile);
// if (sURL.indexOf("CVS") > -1)