Package org.apache.isis.viewer.wicket.ui.components.entity.blocks.summary

Examples of org.apache.isis.viewer.wicket.ui.components.entity.blocks.summary.EntitySummaryPanel


        final RepeatingView entityInstances = new RepeatingView(ID_ENTITY_INSTANCE);
        add(entityInstances);
        for (final ObjectAdapter adapter : adapterList) {
            final String childId = entityInstances.newChildId();
            final EntityModel entityModel = new EntityModel(adapter);
            final EntitySummaryPanel entitySummaryPanel = new EntitySummaryPanel(childId, entityModel);
            entityInstances.add(entitySummaryPanel);
        }
    }
View Full Code Here


        final RepeatingView entityInstances = new RepeatingView(ID_ENTITY_INSTANCE);
        add(entityInstances);
        for (final ObjectAdapter adapter : adapterList) {
            final String childId = entityInstances.newChildId();
            final EntityModel entityModel = new EntityModel(adapter);
            final EntitySummaryPanel entitySummaryPanel = new EntitySummaryPanel(childId, entityModel);
            entityInstances.add(entitySummaryPanel);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.wicket.ui.components.entity.blocks.summary.EntitySummaryPanel

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.