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

jizcode.lock.LockFeature Maven / Gradle / Ivy

There is a newer version: 1.0.14-BETA
Show newest version
package jizcode.lock;

import jizcode.base.Feature;
import jizcode.base.ServiceContext;
import jizcode.base.Tool;

public class LockFeature extends Feature {
    @Override
    protected void onStarted() throws Exception {

    }

    @Override
    protected  T getTool(ServiceContext context, Class tClass) {
        if(tClass == LockTool.class) {
            return (T)new LockTool(context);
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy