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

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

There is a newer version: 3.1.40
Show newest version
package io.protostuff.compiler.model;

import java.util.List;

/**
 * @author Kostiantyn Shchepanovskyi
 */
public interface FieldContainer extends Element {

    List getFields();

    int getFieldCount();

    void setFields(List fields);

    Field getField(String name);

    Field getField(int tag);

    void addField(Field field);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy