source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/metadata/METSFilePointer.java@ 12188

Last change on this file since 12188 was 12188, checked in by kjdon, 18 years ago

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 607 bytes
Line 
1package org.greenstone.gsdl3.gs3build.metadata;
2
3import java.util.List;
4import java.util.ArrayList;
5
6/**
7 * Notes: Greenstone doesn't currently use/support the SEQ or AREA
8 * file pointer types hence, one can use only a simple file reference
9 */
10
11public class METSFilePointer
12{
13 public static final String SIMPLE = "";
14 public static final String SEQUENCE = "seq";
15 public static final String AREA = "area";
16
17 String type;
18 String ID;
19 String fileId;
20 List children;
21
22 public METSFilePointer(String ID, String fileId)
23 { this.ID = ID;
24 this.fileId = fileId;
25 this.type = METSFilePointer.SIMPLE;
26 }
27}
Note: See TracBrowser for help on using the repository browser.