Commit a7296ae1 by Michael Koch Committed by Michael Koch

2003-12-18 Michael Koch <konqueror@gmx.de>

	* java/util/prefs/AbstractPreferences.java
	(cachedChildren): New method.

From-SVN: r74785
parent e969bcdb
2003-12-18 Michael Koch <konqueror@gmx.de>
* java/util/prefs/AbstractPreferences.java
(cachedChildren): New method.
2003-12-18 Michael Koch <konqueror@gmx.de>
* java/util/TimeZone.java (getOffset): New method.
2003-12-17 Fernando Nasser <fnasser@redhat.com>
......
......@@ -183,6 +183,16 @@ public abstract class AbstractPreferences extends Preferences {
}
/**
* Returns all known unremoved children of this node.
*
* @return All known unremoved children of this node
*/
protected final AbstractPreferences[] cachedChildren()
{
return (AbstractPreferences[]) childCache.values().toArray();
}
/**
* Returns all the direct sub nodes of this preferences node.
* Needs access to the backing store to give a meaningfull answer.
* <p>
......
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