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

com.ecfeed.core.model.IStatementCondition Maven / Gradle / Ivy

/*******************************************************************************
 *
 * Copyright (c) 2016 ecFeed AS.                                                
 * 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 
 *  
 *******************************************************************************/

package com.ecfeed.core.model;

import java.util.List;

import com.ecfeed.core.utils.EvaluationResult;
import com.ecfeed.core.utils.MessageStack;

public interface IStatementCondition {
	public Object getCondition();
	public EvaluationResult evaluate(List values);
	public boolean adapt(List values);
	public IStatementCondition getCopy();
	public boolean updateReferences(MethodNode methodNode);
	public boolean compare(IStatementCondition condition);
	public Object accept(IStatementVisitor visitor) throws Exception;
	public boolean mentions(MethodParameterNode methodParameterNode);
	public boolean isAmbiguous(List> domain, MessageStack messageStack);
	public List getListOfChoices();
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy