Package org.apache.jetspeed.layout

Examples of org.apache.jetspeed.layout.PortletPlacementException


      }
      else
      {
        if ( ! nextTarget.getId().equals( rootFragment.getId() ) )
        {
          throw new PortletPlacementException( "Cannot determine complete nested structure for fragment " + targetFragment.getId() );
        }
        nextTarget = null;
      }
    }
    while ( nextTarget != null );
View Full Code Here


        log.error( "getFragmentOnNewPage failure to locate fragment on new page (index=" + i + ") :" + eol + this.toString() + ( placement != null ? ( eol + placement.dumpFragments(null) ) : "" ) + eol, ex );
        throw ex;
     
        if ( nextFragment == null )
      {
        throw new PortletPlacementException( "Cannot locate copy of fragment " + targetFragment.getId() + " in the new page structure :" + eol + this.toString() + ( placement != null ? ( eol + placement.dumpFragments(null) ) : "" ));
      }
    }
    return nextFragment;
  }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.layout.PortletPlacementException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.