summaryrefslogtreecommitdiffstats
blob: b5270c02892a26db1e7097b692c3599715045795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (c) 2012, Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2011, Kevin Smith
 * All rights reserved.
 */
package com.isode.stroke.parser.tree;

import com.isode.stroke.parser.AttributeMap;

/**
 * Class representing a Null Parser element
 *
 */
public class NullParserElement extends ParserElement{
    /**
     * Create the object 
     */
    public NullParserElement() {
        super("", "", new AttributeMap());
    }

    /**
     * Empty/Null Parser element 
     */
    public static final NullParserElement element = new NullParserElement();
}