001package biweekly.io.xml;
002
003import static biweekly.io.xml.XCalNamespaceContext.XCAL_NS;
004
005import javax.xml.namespace.QName;
006
007/**
008 * Contains the XML element names of some of the standard xCard elements.
009 * @author Michael Angstadt
010 */
011public interface XCalQNames {
012        public static final QName ICALENDAR = new QName(XCAL_NS, "icalendar");
013        public static final QName VCALENDAR = new QName(XCAL_NS, "vcalendar");
014        public static final QName COMPONENTS = new QName(XCAL_NS, "components");
015        public static final QName PROPERTIES = new QName(XCAL_NS, "properties");
016        public static final QName PARAMETERS = new QName(XCAL_NS, "parameters");
017}