~slub.team/goobi-production/bug-1013622

« back to all changes in this revision

Viewing changes to src/de/unigoettingen/sub/commons/util/datasource/SimpleStructure.java

  • Committer: Ralf Claussnitzer
  • Date: 2012-05-29 10:55:34 UTC
  • mfrom: (66.1.1 integrate-util)
  • Revision ID: ralf.claussnitzer@slub-dresden.de-20120529105534-t5u5vxj9x5v2vifb
fixes lp:1005844 integrate sub-commons util library

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the SUB Commons  project.
 
3
 * Visit the websites for more information. 
 
4
 *              - http://gdz.sub.uni-goettingen.de 
 
5
 * 
 
6
 * Copyright 2009, Center for Retrospective Digitization, Göttingen (GDZ),
 
7
 * 
 
8
 * Licensed under the Apache License, Version 2.0 (the “License”);
 
9
 * you may not use this file except in compliance with the License.
 
10
 * You may obtain a copy of the License at
 
11
 * 
 
12
 *  http://www.apache.org/licenses/LICENSE-2.0
 
13
 * 
 
14
 * Unless required by applicable law or agreed to in writing, software
 
15
 * distributed under the License is distributed on an “AS IS” BASIS,
 
16
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
17
 * See the License for the specific language governing permissions and
 
18
 * limitations under the License.
 
19
 */
 
20
package de.unigoettingen.sub.commons.util.datasource;
 
21
 
 
22
public class SimpleStructure extends AbstractStructure<SimpleStructure> {
 
23
        
 
24
        /**
 
25
         * Instantiates a new simple structure.
 
26
         */
 
27
        public SimpleStructure() {
 
28
 
 
29
        }
 
30
                
 
31
        /**************************************************************************************
 
32
         * Constructor which create a new bookmark with pagename and content
 
33
         * 
 
34
         * @param pagename as Integer
 
35
         * @param content as String
 
36
         **************************************************************************************/
 
37
        public SimpleStructure(Integer pagename, String content) {
 
38
                super(pagename, content);
 
39
        }
 
40
 
 
41
}