All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ikasan.dashboard.ui.general.component.EntityContentsViewDialog Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package org.ikasan.dashboard.ui.general.component;

import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.orderedlayout.HorizontalLayout;
import org.ikasan.solr.model.IkasanSolrDocument;

public class EntityContentsViewDialog extends AbstractEntityViewDialog {

    private String titleString;

    public EntityContentsViewDialog(String titleString) {
        super();
        this.titleString = titleString;

        super.aceEditor.setHeight("100vh");
        super.title.setText(titleString);
    }

    @Override
    public Component getEntityDetailsLayout() {
        return new HorizontalLayout();
    }

    @Override
    public void populate(IkasanSolrDocument solrDocument) {
        super.open(solrDocument.getEvent());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy