1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements.  See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License.  You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 /* $Id: DocumentNavigationExtensionConstants.java 746664 2009-02-22 12:40:44Z jeremias $ */
19 
20 package org.apache.fop.render.intermediate.extensions;
21 
22 import org.apache.xmlgraphics.util.QName;
23 
24 import org.apache.fop.render.intermediate.IFConstants;
25 
26 /**
27  * Constants for the IF document-level navigation extension.
28  */
29 public interface DocumentNavigationExtensionConstants {
30 
31     /** Namespace URI for the document navigation namespace */
32     String NAMESPACE = IFConstants.NAMESPACE + "/document-navigation";
33 
34     /** Default Namespace prefix for the document navigation namespace */
35     String PREFIX = "nav";
36 
37     /** the bookmark-tree element */
38     QName BOOKMARK_TREE = new QName(NAMESPACE, PREFIX, "bookmark-tree");
39     /** the bookmark element */
40     QName BOOKMARK = new QName(NAMESPACE, PREFIX, "bookmark");
41 
42     /** the named-destination element */
43     QName NAMED_DESTINATION = new QName(NAMESPACE, PREFIX, "named-destination");
44     /** the link element */
45     QName LINK = new QName(NAMESPACE, PREFIX, "link");
46 
47     /** the goto-xy element */
48     QName GOTO_XY = new QName(NAMESPACE, PREFIX, "goto-xy");
49     /** the goto-uri element */
50     QName GOTO_URI = new QName(NAMESPACE, PREFIX, "goto-uri");
51 
52 
53 }
54