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

com.osc.lego.core.SmartComponent Maven / Gradle / Ivy

The newest version!
package com.osc.lego.core;

/**
 * @author osc 2023/8/7.
 *
 *
 */
public interface SmartComponent {
    /**
     * 组件唯一标识
     * @return
     */
    default String id(){
        return getClass().getSimpleName();
    }

    /**
     * 是否能够处理
     * @param d
     * @return
     */
    boolean support(D d);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy