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

com.viaoa.hub.HubAutoAdd Maven / Gradle / Ivy

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