From portal-commits at lists.jboss.org Mon Jun 30 17:17:56 2008 Content-Type: multipart/mixed; boundary="===============1368857006587492685==" MIME-Version: 1.0 From: portal-commits at lists.jboss.org To: portal-commits at lists.jboss.org Subject: [portal-commits] JBoss Portal SVN: r11226 - in modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/presentation: model/ui and 1 other directory. Date: Mon, 30 Jun 2008 17:17:56 -0400 Message-ID: --===============1368857006587492685== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: julien(a)jboss.com Date: 2008-06-30 17:17:56 -0400 (Mon, 30 Jun 2008) New Revision: 11226 Added: modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/p= resentation/impl/model/ui/UIPaneImpl.java modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/p= resentation/model/ui/UIPane.java Log: a bit of reorg of the ui model Added: modules/presentation/trunk/presentation/src/main/java/org/jboss/port= al/presentation/impl/model/ui/UIPaneImpl.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 --- modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/= presentation/impl/model/ui/UIPaneImpl.java (rev 0) +++ modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/= presentation/impl/model/ui/UIPaneImpl.java 2008-06-30 21:17:56 UTC (rev 112= 26) @@ -0,0 +1,37 @@ +/*************************************************************************= ***** + * JBoss, a division of Red Hat = * + * Copyright 2008, Red Hat Middleware, LLC, and individual = * + * contributors as indicated by the @authors tag. See the = * + * copyright.txt in the distribution for a full listing of = * + * individual contributors. = * + * = * + * 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.jboss.portal.presentation.impl.model.ui; + +import org.jboss.portal.presentation.state.structural.StructuralObject; + +/** + * @author Julien Viet + * @version $Revision: 630 $ + */ +public class UIPaneImpl extends UILayoutImpl +{ + public UIPaneImpl(StructuralObject structuralObject, UIObjectContext co= ntext) + { + super(structuralObject, context); + } +} Added: modules/presentation/trunk/presentation/src/main/java/org/jboss/port= al/presentation/model/ui/UIPane.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 --- modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/= presentation/model/ui/UIPane.java (rev 0) +++ modules/presentation/trunk/presentation/src/main/java/org/jboss/portal/= presentation/model/ui/UIPane.java 2008-06-30 21:17:56 UTC (rev 11226) @@ -0,0 +1,33 @@ +/*************************************************************************= ***** + * JBoss, a division of Red Hat = * + * Copyright 2008, Red Hat Middleware, LLC, and individual = * + * contributors as indicated by the @authors tag. See the = * + * copyright.txt in the distribution for a full listing of = * + * individual contributors. = * + * = * + * 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.jboss.portal.presentation.model.ui; + +/** + * A pane is a special kind of layout that cannot be displayed by itself. + * + * @author Julien Viet + * @version $Revision: 630 $ + */ +public interface UIPane extends UILayout +{ +} --===============1368857006587492685==--