Author: julien(a)jboss.com
Date: 2008-06-26 12:27:34 -0400 (Thu, 26 Jun 2008)
New Revision: 11161
Modified:
modules/presentation/trunk/portal/src/main/java/org/jboss/portal/presentation/portal/model/ModelAdapter.java
modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation/impl/state/structural/adapter/StructuralAdapter.java
modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation/impl/state/structural/adapter/StructuralStateContextImpl.java
Log:
typo
Modified:
modules/presentation/trunk/portal/src/main/java/org/jboss/portal/presentation/portal/model/ModelAdapter.java
===================================================================
---
modules/presentation/trunk/portal/src/main/java/org/jboss/portal/presentation/portal/model/ModelAdapter.java 2008-06-26
13:38:48 UTC (rev 11160)
+++
modules/presentation/trunk/portal/src/main/java/org/jboss/portal/presentation/portal/model/ModelAdapter.java 2008-06-26
16:27:34 UTC (rev 11161)
@@ -115,7 +115,7 @@
}
}
- public Collection<?> getChilren(Object o)
+ public Collection<?> getChildren(Object o)
{
if (o instanceof PortalNode)
{
Modified:
modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation/impl/state/structural/adapter/StructuralAdapter.java
===================================================================
---
modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation/impl/state/structural/adapter/StructuralAdapter.java 2008-06-26
13:38:48 UTC (rev 11160)
+++
modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation/impl/state/structural/adapter/StructuralAdapter.java 2008-06-26
16:27:34 UTC (rev 11161)
@@ -42,7 +42,7 @@
N getParent(N n);
- Collection<? extends N> getChilren(N n);
+ Collection<? extends N> getChildren(N n);
String getId(N n);
Modified:
modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation/impl/state/structural/adapter/StructuralStateContextImpl.java
===================================================================
---
modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation/impl/state/structural/adapter/StructuralStateContextImpl.java 2008-06-26
13:38:48 UTC (rev 11160)
+++
modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation/impl/state/structural/adapter/StructuralStateContextImpl.java 2008-06-26
16:27:34 UTC (rev 11161)
@@ -79,7 +79,7 @@
//
Set<String> childrenIds = new HashSet<String>();
- for (N childNode : adapter.getChilren(node))
+ for (N childNode : adapter.getChildren(node))
{
childrenIds.add(adapter.getId(childNode));
}
@@ -124,7 +124,7 @@
//
Set<StructuralObject> structuralChildren = new
HashSet<StructuralObject>();
- for (N childNode : adapter.getChilren(parentNode))
+ for (N childNode : adapter.getChildren(parentNode))
{
structuralChildren.add(takeSnapshot(childNode));
}
@@ -221,7 +221,7 @@
StructuralObjectImpl nodeSnapshot = takeSnapshot(node);
Map<String, N> childrenMap = new HashMap<String, N>();
- for (N childNode : adapter.getChilren(node))
+ for (N childNode : adapter.getChildren(node))
{
childrenMap.put(adapter.getId(childNode), childNode);
}
Show replies by date