<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package usda.weru.gis.data;

/**
 *
 * @author Joseph Levin &lt;joelevin@weru.ksu.edu&gt;
 */
public class Territory {

    private final TerritoryType c_type;

    private String c_displayName;
    private String c_description;

    /**
     *
     * @param type
     */
    public Territory(TerritoryType type) {
        c_type = type;
    }

    /**
     *
     * @param type
     * @param displayName
     */
    public Territory(TerritoryType type, String displayName) {
        this(type);
        c_displayName = displayName;
    }

    /**
     *
     * @param type
     * @param displayName
     * @param description
     */
    public Territory(TerritoryType type, String displayName, String description) {
        this(type, displayName);
        c_description = description;
    }

    /**
     *
     * @return
     */
    public String getDisplayName() {
        return c_displayName;
    }

    /**
     *
     * @return
     */
    public TerritoryType getType() {
        return c_type;
    }

    /**
     *
     * @return
     */
    public String getTypeDescription() {
        return c_description;
    }
}
</pre></body></html>