01: //==============================================================================
02: //===
03: //=== MetadataAttribute
04: //===
05: //==============================================================================
06: //=== Copyright (C) 2001-2005 Food and Agriculture Organization of the
07: //=== United Nations (FAO-UN), United Nations World Food Programme (WFP)
08: //=== and United Nations Environment Programme (UNEP)
09: //===
10: //=== This program is free software; you can redistribute it and/or modify
11: //=== it under the terms of the GNU General Public License as published by
12: //=== the Free Software Foundation; either version 2 of the License, or (at
13: //=== your option) any later version.
14: //===
15: //=== This program is distributed in the hope that it will be useful, but
16: //=== WITHOUT ANY WARRANTY; without even the implied warranty of
17: //=== MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18: //=== General Public License for more details.
19: //===
20: //=== You should have received a copy of the GNU General Public License
21: //=== along with this program; if not, write to the Free Software
22: //=== Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23: //===
24: //=== Contact: Jeroen Ticheler - FAO - Viale delle Terme di Caracalla 2,
25: //=== Rome - Italy. email: geonetwork@osgeo.org
26: //==============================================================================
27:
28: package org.fao.geonet.kernel.schema;
29:
30: import java.util.ArrayList;
31:
32: //==============================================================================
33:
34: public class MetadataAttribute {
35: public String name;
36: public String defValue;
37: public boolean required;
38:
39: public ArrayList values = new ArrayList();
40:
41: //---------------------------------------------------------------------------
42: //---
43: //--- Constructor
44: //---
45: //---------------------------------------------------------------------------
46:
47: MetadataAttribute() {
48: }
49: }
50:
51: //==============================================================================
|