![JAR search and dependency download from the Maven repository](/logo.png)
com.viaoa.hub.HubAutoAdd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oa-core Show documentation
Show all versions of oa-core Show documentation
Object Automation library
The newest version!
package com.viaoa.hub;
/**
* Same as HubAutoMatch, except that this will not remove objects.
*
* @author vvia
* @param
* @param
*/
public class HubAutoAdd extends HubAutoMatch {
public HubAutoAdd(Hub hub, String property, Hub hubMaster, boolean bManuallyCalled) {
super(hub, property, hubMaster, bManuallyCalled);
}
public HubAutoAdd(Hub hub, String property, Hub hubMaster) {
super(hub, property, hubMaster, false);
}
@Override
public boolean okToRemove(Object obj, Object propertyValue) {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy