
org.biopax.paxtools.pattern.constraint.ActivityConstraint Maven / Gradle / Ivy
package org.biopax.paxtools.pattern.constraint;
import org.biopax.paxtools.model.level3.PhysicalEntity;
import org.biopax.paxtools.pattern.Match;
/**
* Checks if the PhysicalEntity controls anything.
*
* @author Ozgun Babur
*/
public class ActivityConstraint extends ConstraintAdapter
{
/**
* Desired activity.
*/
boolean active;
/**
* Constructor with the desired activity.
* @param active desires activity
*/
public ActivityConstraint(boolean active)
{
super(1);
this.active = active;
}
/**
* Checks if the PhysicalEntity controls anything.
* @param match current match to validate
* @param ind mapped index
* @return true if it controls anything
*/
@Override
public boolean satisfies(Match match, int... ind)
{
PhysicalEntity pe = (PhysicalEntity) match.get(ind[0]);
return pe.getControllerOf().isEmpty() == active;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy