source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/doctypes/DocumentMetadata.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: 312 bytes
Line 
1package org.greenstone.gsdl3.gs3build.doctypes;
2
3public class DocumentMetadata
4{
5 String name;
6 String value;
7
8 public DocumentMetadata(String name, String value)
9 { this.name = name;
10 this.value = value;
11 }
12
13 public String getName()
14 { return this.name;
15 }
16
17 public String getValue()
18 { return this.value;
19 }
20}
Note: See TracBrowser for help on using the repository browser.