Implementation of PRePTag

    This is the super class of all the PRePTags. It is abstract and consists of a tag name and a value.

    Constructor:

    PRePTag(String sTagName)
    sets the tag name

    Methods:

    compile(Session)
    compile

    compile(Session session, PrintWriter pw)
    compile the tag to a given PrintWriter

    debugOutput()
    debugOutput: helps to find some exceptions

    getAllValue()
    getAllValue: gets the whole value and returns it as a String

    getName()
    getName: returns the name of this tag as a String

    getValue()
    getValue: gets one line of the value of a tag and returns it as a String

    setValue(Object)
    setValue: sets the specified object as value in the tag

    toString()
    return the tag name and the value

Back PRePTag(String sTagName)
sets the tag name :