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

com.github.yiuman.citrus.support.model.Button Maven / Gradle / Ivy

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

import org.springframework.util.CollectionUtils;

import java.util.Arrays;
import java.util.List;

/**
 * 按钮
 *
 * @author yiuman
 * @date 2020/5/8
 */
public class Button {

    /**
     * 按钮文本
     */
    private String text;

    /**
     * 执行的时间名或者脚本
     */
    private String action;

    /**
     * 按钮颜色
     */
    private String color;

    /**
     * 按钮图标
     */
    private String icon;


    /**
     * 按钮集合,如不为空,则为按钮组
     */
    private List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy