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

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

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

import java.util.List;

/**
 * Base interface for field containers - messages, groups
 * and oneof nodes.
 *
 * @author Kostiantyn Shchepanovskyi
 */
public interface FieldContainer extends Element {

    List getFields();

    void setFields(List fields);

    int getFieldCount();

    Field getField(String name);

    Field getField(int tag);

    void addField(Field field);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy