Kaydet (Commit) 7650a60b authored tarafından Stephan Wunderlich's avatar Stephan Wunderlich

CHG: removed obsolete lines

üst d9199f10
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: _XEnumeration.java,v $ * $RCSfile: _XEnumeration.java,v $
* *
* $Revision: 1.1 $ * $Revision: 1.2 $
* *
* last change:$Date: 2003-01-27 18:08:39 $ * last change:$Date: 2003-02-03 16:42:43 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -69,6 +69,9 @@ import com.sun.star.uno.XInterface; ...@@ -69,6 +69,9 @@ import com.sun.star.uno.XInterface;
import lib.MultiMethodTest; import lib.MultiMethodTest;
import lib.Status; import lib.Status;
import com.sun.star.uno.AnyConverter;
import com.sun.star.uno.Type;
/** /**
* Testing <code>com.sun.star.container.XEnumeration</code> * Testing <code>com.sun.star.container.XEnumeration</code>
* interface methods : * interface methods :
...@@ -99,18 +102,7 @@ public class _XEnumeration extends MultiMethodTest { ...@@ -99,18 +102,7 @@ public class _XEnumeration extends MultiMethodTest {
*/ */
public void _hasMoreElements() { public void _hasMoreElements() {
boolean result = true; boolean result = true;
// this method runs twice so look if holder.Enum is empty
if ( Enum == null ) {
Enum = (XEnumerationAccess) tEnv.getObjRelation("ENUM");
if ( Enum == null ) {
// SKIPPED.FAILED - the ObjectRelation is not available
Status.failed("ObjectRelation('ENUM') XEnumerationAccess n.a.");
return;
} else {
// create an enumeration
oObj = Enum.createEnumeration();
}
}
log.println("get all elements"); log.println("get all elements");
while ( oObj.hasMoreElements() ) { while ( oObj.hasMoreElements() ) {
try { try {
...@@ -146,7 +138,7 @@ public class _XEnumeration extends MultiMethodTest { ...@@ -146,7 +138,7 @@ public class _XEnumeration extends MultiMethodTest {
log.println("additional call must throw NoSuchElementException"); log.println("additional call must throw NoSuchElementException");
try { try {
XInterface oAny = (XInterface)oObj.nextElement(); Object oAny = oObj.nextElement();
log.println("nextElement: no exception!"); log.println("nextElement: no exception!");
result = false; result = false;
} catch (WrappedTargetException e) { } catch (WrappedTargetException e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment