Package uk.ac.osswatch.simal.wicket.panel

Examples of uk.ac.osswatch.simal.wicket.panel.LinkPanel


  public void populateItem(Item<ICellPopulator<IResource>> item,
      String componentId, IModel<IResource> model) {
    IResource targetResource = model.getObject();
    if (targetResource instanceof IDocument) {
      IDocument page = (IDocument)targetResource;
      item.add(new LinkPanel(componentId, page.getURI(), page.getLabel()));
    } else {
      item.add(new LinkPanel(componentId, targetResource, createLabelModel(model)));
    }
  }
View Full Code Here

TOP

Related Classes of uk.ac.osswatch.simal.wicket.panel.LinkPanel

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.