package org.greenstone.gsdl3.gs3build.metadata; public abstract class METSDescriptiveSection { METSLocation location; String type; String otherType; public METSDescriptiveSection(String type) { this.location = null; this.type = type; this.otherType = null; } public METSDescriptiveSection(METSLocation location, String type) { this.location = location; this.type = type; this.otherType = null; } }