1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.rendering.wikimodel.xml

File ISaxConst.java

 

Code metrics

0
0
0
1
77
53
0
-
-
0
-

Classes

Class Line # Actions
ISaxConst 26 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.rendering.wikimodel.xml;
21   
22    /**
23    * @version $Id: 33a6023eb8cffb44d8b35397331d88cd5c2b8653 $
24    * @since 4.0M1
25    */
 
26    public interface ISaxConst
27    {
28    String DEFINITION_DESCRIPTION = "dd";
29    String DEFINITION_LIST = "dl";
30    String DEFINITION_TERM = "dt";
31    String DOCUMENT = "document";
32    String EMPTY_LINES = "emptyLines";
33    String EMPTY_LINES_SIZE = "number";
34    String ESCAPE = "esc";
35    String EXTENSION_BLOCK = "extensionBlock";
36    String EXTENSION_INLINE = "extensionInline";
37    String EXTENSION_NAME = "name";
38    String FORMAT = "format";
39    String HEADER = "header";
40    String HEADER_LEVEL = "level";
41    String HORIZONTAL_LINE = "hr";
42    String IMAGE = "image";
43    String IMAGE_IMPLICIT = "implicit";
44    String INFO_BLOCK = "info";
45    String INFO_BLOCK_TYPE = "type";
46    String LINE_BREAK = "br";
47    String LIST_ITEM = "li";
48    String LIST_ORDERED = "ol";
49    String LIST_UNORDERED = "ul";
50    String MACRO_BLOCK = "macroBlock";
51    String MACRO_INLINE = "macroInline";
52    String MACRO_NAME = "name";
53    String NEW_LINE = "\n";
54    String PARAGRAPH = "p";
55    String PROPERTY_BLOCK = "property";
56    String PROPERTY_DOC = "doc";
57    String PROPERTY_INLINE = "inlineProperty";
58    String PROPERTY_URL = "url";
59    String QUOTATION = "blockquot";
60    String QUOTATION_LINE = "line";
61    String REF_EXPLICIT = "aExplicit";
62    String REF_IMPLICIT = "a";
63    String SECTION = "section";
64    String SECTION_CONTENT = "content";
65    String SECTION_DOC_LEVEL = "docLevel";
66    String SECTION_HEADER_LEVEL = "headerLevel";
67    String SECTION_LEVEL = "absLevel";
68    String STYLES = "styles";
69    String TABLE = "table";
70    String TABLE_CAPTION = "tcaption";
71    String TABLE_CAPTION_PARAM = "caption";
72    String TABLE_CELL = "td";
73    String TABLE_HEAD = "th";
74    String TABLE_ROW = "tr";
75    String VERBATIM_BLOCK = "pre";
76    String VERBATIM_INLINE = "preInline";
77    }