source: trunk/gsdl3/src/java/org/greenstone/gsdl3/gs3build/metadata/METSDescriptiveSection.java@ 5945

Last change on this file since 5945 was 5800, checked in by cs025, 21 years ago

Adding gs3build

  • Property svn:keywords set to Author Date Id Revision
File size: 441 bytes
Line 
1package org.greenstone.gsdl3.gs3build.metadata;
2
3public abstract class METSDescriptiveSection
4{ METSLocation location;
5 String type;
6 String otherType;
7
8 public METSDescriptiveSection(String type)
9 { this.location = null;
10 this.type = type;
11 this.otherType = null;
12 }
13
14 public METSDescriptiveSection(METSLocation location, String type)
15 { this.location = location;
16 this.type = type;
17 this.otherType = null;
18 }
19}
Note: See TracBrowser for help on using the repository browser.