package org.eclipse.iee.export.model; public abstract class Field { private String type; public Field(String type) { this.type = type; } public String getType() { return type; } }