Package org.jasig.portal.layout.alm

Examples of org.jasig.portal.layout.alm.ILayoutFragment


  protected void refreshFragmentMap() throws PortalException {
        Collection fragmentIds = getFragments();
        fragments = new HashMap();
      for (Iterator ids = fragmentIds.iterator(); ids.hasNext(); ) {
             String fragmentId = (String) ids.next();
             ILayoutFragment layoutFragment = alm.getFragment(fragmentId);
             if (layoutFragment == null || !(layoutFragment instanceof ALFragment))
               throw new PortalException("The fragment must be "+ALFragment.class.getName()+" type!");
             fragments.put(fragmentId,layoutFragment);
     
  }
View Full Code Here

TOP

Related Classes of org.jasig.portal.layout.alm.ILayoutFragment

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.