/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.csw.bindings; import java.util.ArrayList; import java.util.List; import javax.xml.namespace.QName; import org.geotools.csw.CSW; import org.geotools.xml.AbstractSimpleBinding; import org.geotools.xml.InstanceComponent; public class TypeNameListTypeBinding extends AbstractSimpleBinding { public TypeNameListTypeBinding() { } /** * @generated */ public QName getTarget() { return CSW.TypeNameListType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return List.class; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(InstanceComponent instance, Object value) throws Exception { return value; } public String encode(Object object, String value) throws Exception { //just return the value passed in, subclasses should override to provide new value return value; } }