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