package com.tandbergtv.metadatamanager.model;


/**
 * Model for storing the metadata fields. Stores the xpath for the field in the
 * ttvspec format. indices is used to group complex types
 * 
 * @author vgoyal
 * 
 */
public class Field extends FieldBase implements IField {
	
	public Field() {
		super();
	}

	/**
	 * Ctor
	 * 
	 * @param ttvXPath
	 * @param value
	 */
	public Field(String ttvXPath, String value) {
		super(ttvXPath, value);
	}

	//Copy constructor
	public Field(IField copyFromField){
		super(copyFromField);
	}
}
