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

net.sf.aguacate.model.FieldStructureArray Maven / Gradle / Ivy

There is a newer version: 0.10.9
Show newest version
package net.sf.aguacate.model;

import java.util.Map;

public class FieldStructureArray extends Field {

	private final Map fields;

	public FieldStructureArray(String name, FieldType type, boolean optional, Map fields) {
		super(name, type, optional);
		this.fields = fields;
	}

	public Map getFields() {
		return fields;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy