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

Last change on this file since 9858 was 5800, checked in by cs025, 21 years ago

Adding gs3build

  • Property svn:keywords set to Author Date Id Revision
File size: 401 bytes
Line 
1package org.greenstone.gsdl3.gs3build.metadata;
2
3/**
4 * A simple metadata item with a label and one value to fit...
5 */
6
7public class NamespaceItem
8{
9 private String label;
10 private String value;
11
12 public NamespaceItem(String label, String value)
13 { this.label = label;
14 this.value = value;
15 }
16
17 public String getLabel()
18 { return this.label;
19 }
20
21 public String getValue()
22 { return this.value;
23 }
24}
Note: See TracBrowser for help on using the repository browser.