blob: 8c79db962a8c910eaf60661878a5c5f65d1e5d0d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Red Hat Inc..
* 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:
* Rastislav Wagner (Red Hat) - initial API and implementation
*******************************************************************************/
package org.eclipse.swtbot.generator.framework;
import java.util.List;
/**
* This class represents complex rule which is being matched to two or more Simple Rules
*
*/
public abstract class GenerationComplexRule extends GenerationRule{
private List<GenerationSimpleRule> initializationRules;
/**
* Checks whether given GenerationSimpleRule applies to complex rule
* @param rule to match with complex rule
* @param i which rule from complex rule to match
* @return true if given SimpleRule applies to i-indexed rule
*/
public abstract boolean appliesToPartially(GenerationSimpleRule rule, int i);
/**
* Checks whether given list of GenerationSimpleRule-s applies to complex rule
* @param rules to match with complex rule
* @return true if given list of SimpleRule applies complex rule
*/
public abstract boolean appliesTo(List<GenerationSimpleRule> rules);
/**
* Initializes complex rule for given simple rules
* @param rules to initialize complex rule for
*/
public void initializeForRules(List<GenerationSimpleRule> rules){
this.initializationRules=rules;
}
/**
*
* @return rules which this complex rule was initialized for
*/
public List<GenerationSimpleRule> getInitializationRules(){
return initializationRules;
}
}