]> _ Git - cubeextranet.git/blob
74c92ea1d9d6e34db35d4dc4e487b6be4db9407b
[cubeextranet.git] /
1 /*\r
2  * Licensed to the Apache Software Foundation (ASF) under one or more\r
3  * contributor license agreements.  See the NOTICE file distributed with\r
4  * this work for additional information regarding copyright ownership.\r
5  * The ASF licenses this file to You under the Apache License, Version 2.0\r
6  * (the "License"); you may not use this file except in compliance with\r
7  * the License.  You may obtain a copy of the License at\r
8  *\r
9  *      http://www.apache.org/licenses/LICENSE-2.0\r
10  *\r
11  * Unless required by applicable law or agreed to in writing, software\r
12  * distributed under the License is distributed on an "AS IS" BASIS,\r
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14  * See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  */\r
17 package org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline;\r
18 \r
19 import org.apache.pdfbox.cos.COSDictionary;\r
20 \r
21 /**\r
22  * This represents an outline in a pdf document.\r
23  *\r
24  * @author <a href="mailto:ben@benlitchfield.com">Ben Litchfield</a>\r
25  * @version $Revision: 1.2 $\r
26  */\r
27 public class PDDocumentOutline extends PDOutlineNode\r
28 {\r
29 \r
30     /**\r
31      * Default Constructor.\r
32      */\r
33     public PDDocumentOutline()\r
34     {\r
35         super();\r
36         node.setName( "Type", "Outlines" );\r
37     }\r
38 \r
39     /**\r
40      * Constructor for an existing document outline.\r
41      *\r
42      * @param dic The storage dictionary.\r
43      */\r
44     public PDDocumentOutline( COSDictionary dic )\r
45     {\r
46         super( dic );\r
47     }\r
48 }\r