From do-not-reply at jboss.org Thu May 13 03:22:10 2010 Content-Type: multipart/mixed; boundary="===============0472449752187738553==" MIME-Version: 1.0 From: do-not-reply at jboss.org To: gatein-commits at lists.jboss.org Subject: [gatein-commits] gatein SVN: r3075 - portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/navigation. Date: Thu, 13 May 2010 03:22:10 -0400 Message-ID: <201005130722.o4D7MASa023663@svn01.web.mwc.hst.phx2.redhat.com> --===============0472449752187738553== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: hoang_to Date: 2010-05-13 03:22:09 -0400 (Thu, 13 May 2010) New Revision: 3075 Added: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/nav= igation/ParentChildPair.java Log: Add missed class in the last revision Added: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui= /navigation/ParentChildPair.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/na= vigation/ParentChildPair.java (rev 0) +++ portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/na= vigation/ParentChildPair.java 2010-05-13 07:22:09 UTC (rev 3075) @@ -0,0 +1,61 @@ +/* + * Copyright (C) 2010 eXo Platform SAS. + * + * This is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this software; if not, write to the Free + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA, or see the FSF site: http://www.fsf.org. + */ +package org.exoplatform.portal.webui.navigation; + +import org.exoplatform.portal.config.model.PageNode; + +/** + * This class wrappes a pair of PageNode and ist parent. + * = + * @author Minh Hoang TO + * @version $Id$ + * + */ +public class ParentChildPair +{ + private PageNode parentNode; + = + private PageNode childNode; + = + public ParentChildPair(PageNode _parentNode, PageNode _childNode) + { + this.parentNode =3D _parentNode; + this.childNode =3D _childNode; + } + = + public PageNode getParentNode() + { + return parentNode; + } + = + public PageNode getChildNode() + { + return childNode; + } + = + public void setParentNode(PageNode _parentNode) + { + this.parentNode =3D _parentNode; + } + = + public void setChildNode(PageNode _childNode) + { + this.childNode =3D _childNode; + } +} --===============0472449752187738553==--