001package Torello.HTML;
002
003/**
004 * Single-Quotes & Double-Quotes - An enumeration of the two types of quotes used inside HTML
005 * Tags for assigning <B STYLE='color:red;'>values</B> to tag-<CODE>attributes</CODE>.
006 * 
007 * <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=SD>
008 */
009public enum SD
010{
011    /** An enumerated constant that represents a single-quotation mark: {@code '} */
012    SingleQuotes('\''),
013
014    /** An enumerated constant that represents a double-quotation mark: {@code "} */
015    DoubleQuotes('"');
016
017    /**
018     * This character contains, or represents, the quote being used by {@code 'this'} 
019     * enumerated-constant, as a java-character.
020     */
021    public final char quote;
022
023    private SD(char quote) { this.quote = quote; }
024}