noraui.model.ModelList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of noraui Show documentation
Show all versions of noraui Show documentation
Non-Regression Automation for User Interfaces
package noraui.model;
import java.util.List;
public interface ModelList extends SerializableModel {
/**
* Adds a Model in ModelList
*
* @param m
* is a noraui.model.Model Object
* @return The noraui.model.ModelList with the added noraui.model.Model
*/
ModelList addModel(Model m);
/**
* Subtracts a Model of ModelList
*
* @param list
* is a noraui.model.ModelList Object
*/
void subtract(ModelList list);
/**
* @return an array of NoraUi ids
*/
List getIds();
}