source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/metadata/METSFileRef.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: 204 bytes
Line 
1package org.greenstone.gsdl3.gs3build.metadata;
2
3public class METSFileRef
4{ String label;
5
6 public METSFileRef(String label)
7 { this.label = label;
8 }
9
10 public String toString()
11 { return this.label;
12 }
13}
Note: See TracBrowser for help on using the repository browser.