
com.talk2object.plum.interaction.model.GenericViewComponent Maven / Gradle / Ivy
The newest version!
package com.talk2object.plum.interaction.model;
import com.talk2object.plum.view.component.Component;
public class GenericViewComponent {
private String title;
private Component component;
public GenericViewComponent(String title, Component component) {
this.title = title;
this.component = component;
}
public Component getComponent() {
return component;
}
public String getTitle() {
return title;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy