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

system.web.destroy.JWebDestroyService Maven / Gradle / Ivy

The newest version!
package system.web.destroy;

import java.util.List;

/**
 *
 * @author wangchunzi
 */
public class JWebDestroyService {

    public Class ini(List cs) {
        for (Class c : cs) {
            if (Destroy.class.isAssignableFrom(c) && !c.equals(Destroy.class)) {
                    return c;
            }
        }
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy