package edu.vt.marian.Document;

import java.io.*;
import java.net.*;
import java.util.*;

import edu.vt.marian.common.*;


/**
    The presentatble version of a fixed field in a US MARC record.
    <P>
    <B>NOTE:</B>  At this point adds no functionality to the superclass.  Intended
        to support presentFull() when presentFull() gives an "administrator's"
        presentation instead of a transport presentation.
    @author	Robert France
    @author Jianxin(Jason) Zhao (jxzhao@csgrad.cs.vt.edu)

*/

public class PresentableMarcFixField extends MarcFixField
{
    /**
        Create a PresentableMarcFixField object with no data.
        @param    id --- this will be the id of this object
        @param    debug -- used for debugging
    */      
    public PresentableMarcFixField(int fieldID, EntityMap xMap, Debug d)
    {
        super(fieldID, xMap, d);
    }


    /**
        Create a PresentableMarcFixField object from the parameters id and data .
        @param    id --- this will be the id of this object
        @param    data -- this will be the data of this object
        @param    debug -- used for debugging
    */      
    public PresentableMarcFixField(int fieldID, String dataStr, EntityMap xMap, Debug d)
    {
        super(fieldID, dataStr, xMap, d);
    }


}

