source: branches/ant-install-branch/gsdl3/src/java/org/greenstone/gsdl3/gs3build/metadata/METSDescriptiveSection.java@ 9858

Last change on this file since 9858 was 8703, checked in by chi, 20 years ago

Modifications for the validated METS format and program layout change

  • 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.