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

io.mateu.mdd.vaadin.components.views.RpcViewFieldViewComponent Maven / Gradle / Ivy

There is a newer version: 1.1.60
Show newest version
package io.mateu.mdd.vaadin.components.views;

import io.mateu.mdd.shared.reflection.FieldInterfaced;

public class RpcViewFieldViewComponent extends AbstractViewComponent {

    private final FieldInterfaced field;
    private final EditorViewComponent editorViewComponent;


    public RpcViewFieldViewComponent(FieldInterfaced field, EditorViewComponent editorViewComponent) {
        this.field = field;
        this.editorViewComponent = editorViewComponent;
    }

    public FieldInterfaced getField() {
        return field;
    }

    public EditorViewComponent getEditorViewComponent() {
        return editorViewComponent;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy