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