Kaydet (Commit) 66d80e4d authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS qadev22 (1.3.100); FILE MERGED

2005/03/10 16:20:51 sw 1.3.100.1: i44711
üst 5399ee1b
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: _ParagraphProperties.java,v $ * $RCSfile: _ParagraphProperties.java,v $
* *
* $Revision: 1.3 $ * $Revision: 1.4 $
* *
* last change:$Date: 2003-11-18 16:24:59 $ * last change:$Date: 2005-03-29 11:56:54 $
* *
* 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
...@@ -459,18 +459,18 @@ public class _ParagraphProperties extends MultiPropertyTest { ...@@ -459,18 +459,18 @@ public class _ParagraphProperties extends MultiPropertyTest {
} }
public String[] getElementNames() { public String[] getElementNames() {
Enumeration enum = members.keys(); Enumeration oEnum = members.keys();
int count = members.size(); int count = members.size();
String[] res = new String[count]; String[] res = new String[count];
int i=0; int i=0;
while(enum.hasMoreElements()) while(oEnum.hasMoreElements())
res[i] = (String)enum.nextElement(); res[i] = (String)oEnum.nextElement();
return res; return res;
} }
public com.sun.star.uno.Type getElementType() { public com.sun.star.uno.Type getElementType() {
Enumeration enum = members.keys(); Enumeration oEnum = members.keys();
String key = (String)enum.nextElement(); String key = (String)oEnum.nextElement();
Object o = members.get(key); Object o = members.get(key);
return new Type(o.getClass()); return new Type(o.getClass());
} }
......
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