public CollectionLayoutDefaultViewPage defaultView()

in domain/src/main/java/demoapp/dom/domain/collections/CollectionLayout/CollectionLayoutMenu.java [86:98]


    public CollectionLayoutDefaultViewPage defaultView(){
        val page = new CollectionLayoutDefaultViewPage();
        samples.stream()
                .map(CollectionLayoutDefaultViewChildVm::new)
                .forEach(e -> page.getChildren().add(e));
        samples.stream()
                .map(CollectionLayoutDefaultViewChildVm::new)
                .forEach(e -> page.getMoreChildren().add(e));
        samples.stream()
                .map(CollectionLayoutDefaultViewChildVm::new)
                .forEach(e -> page.getYetMoreChildren().add(e));
        return page;
    }