source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/metadata/METSDescriptiveSection.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: 475 bytes
Line 
1package org.greenstone.gsdl3.gs3build.metadata;
2
3public abstract class METSDescriptiveSection
4{
5 METSLocation location;
6 String type;
7 String otherType;
8
9 public METSDescriptiveSection(String type)
10 {
11 this.location = null;
12 this.type = type;
13 this.otherType = null;
14 }
15
16 public METSDescriptiveSection(METSLocation location, String type)
17 {
18 this.location = location;
19 this.type = type;
20 this.otherType = null;
21 }
22}
Note: See TracBrowser for help on using the repository browser.