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

com.github.yiuman.citrus.support.widget.Widget Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.github.yiuman.citrus.support.widget;

/**
 * 控件/小部件
 *
 * @author yiuman
 * @date 2020/5/6
 */
public interface Widget {

    /**
     * 控件的主键
     *
     * @return 主键字符串
     */
    String getKey();

    /**
     * 控件暂时的名称
     *
     * @return 控件展示名
     */
    String getText();

    /**
     * 控件的模型,如树,列表等
     *
     * @return 控件所关联的模型实例
     */
    M getModel();

    /**
     * 控件的定义的名称
     *
     * @return 控件名 如:v-selector
     */
    String getWidgetName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy