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

io.protostuff.compiler.model.GroupContainer Maven / Gradle / Ivy

The newest version!
package io.protostuff.compiler.model;

import java.util.List;

/**
 * Container for group nodes.
 *
 * @author Kostiantyn Shchepanovskyi
 */
public interface GroupContainer {

    List getGroups();

    void setGroups(List groups);

    void addGroup(Group group);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy