package cnp.ew.properties;

import java.util.*;

public class CpProperty
{
    String title;
    CpType type;
    int id;

    public CpProperty(String newTitle, int newType, int newId)
    {
        this(newTitle, new CpBasicType(newType), newId);
    }

    public CpProperty(String newTitle, CpType newType, int newId)
    {
        title = newTitle;
        type = newType;
        id = newId;
    }

    public String getTitle()
    {
        return title;
    }

    public CpType getType()
    {
        return type;
    }

    public int getId()
    {
        return id;
    }
}

