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

com.dooapp.gaedo.finders.expressions.AbstractBasicContainingExpression Maven / Gradle / Ivy

package com.dooapp.gaedo.finders.expressions;

import com.dooapp.gaedo.properties.Property;

/**
 * Base class for containing expression
 * @author ndx
 *
 */
public abstract class AbstractBasicContainingExpression extends AbstractBasicExpression {

	/**
	 * Contained obejct expectation
	 */
	private final Object contained;


	public AbstractBasicContainingExpression(Property fieldName,Iterable path, 
			Object contained) {
		super(fieldName, path);
		this.contained = contained;
	}


	public Object getContained() {
		return contained;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy