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

com.janosgats.logging.flexibleappender.enableable.CompositeOrEnableable Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package com.janosgats.logging.flexibleappender.enableable;

/**
 * Execute multiple enablers with a logical OR by using this enabler!
 * 
* Feel free to override one of these Enableables to create your own! */ public class CompositeOrEnableable extends CompositeEnableable { @Override public boolean isEnabled() { for (AbstractEnableable enableable : abstractEnableables) { if (enableable.isEnabled()) return true; } return false; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy