blob: 96d4463b6f1c0dfabf86f0a1bd52667ade2d1a41 [file] [log] [blame]
/*
*************************************************************************
* Copyright (c) 2009 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Actuate Corporation - initial API and implementation
*
*************************************************************************
*/
package org.eclipse.datatools.connectivity.oda.spec.result.filter;
import org.eclipse.datatools.connectivity.oda.OdaException;
import org.eclipse.datatools.connectivity.oda.spec.ValidationContext;
/**
* A runtime composite filter expression whose child expressions are combined by the And boolean operator.
* This composite expression is evaluated to be true only if all its child expressions are evaluated as true.
* @since 3.2 (DTP 1.7)
*/
public class AndExpression extends CompositeExpression
{
/* (non-Javadoc)
* @see org.eclipse.datatools.connectivity.oda.spec.result.filter.CompositeExpression#validateChildren(org.eclipse.datatools.connectivity.oda.spec.ValidationContext)
*/
@Override
protected void validateChildren( ValidationContext context )
throws OdaException
{
validateMinElements( 2 );
super.validateChildren( context, true );
}
/*
* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals( final Object object )
{
if( !(object instanceof AndExpression) )
return false;
final AndExpression that = (AndExpression) object;
return equals( this.getExpressions(), that.getExpressions() );
}
}