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

noraui.model.ModelList Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy