01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2004-2006, Geotools Project Managment Committee (PMC)
05: * (C) 2004 TOPP - www.openplans.org
06: *
07: * This library is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License as published by the Free Software Foundation; either
10: * version 2.1 of the License, or (at your option) any later version.
11: *
12: * This library is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * Created on Apr 27, 2004
18: */
19: package org.geotools.validation.relate;
20:
21: import java.beans.PropertyDescriptor;
22:
23: import org.geotools.validation.DefaultIntegrityValidationBeanInfo;
24:
25: /**
26: * @author Pati
27: *
28: * To change the template for this generated type comment go to
29: * Window>Preferences>Java>Code Generation>Code and Comments
30: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/extension/validation/src/main/java/org/geotools/validation/relate/IntersectsIntegrityBeanInfo.java $
31: */
32: public class IntersectsIntegrityBeanInfo extends
33: DefaultIntegrityValidationBeanInfo {
34: /**
35: *
36: */
37: public IntersectsIntegrityBeanInfo() {
38: super ();
39: }
40:
41: /**
42: * Implementation of getPropertyDescriptors.
43: *
44: *
45: * @see java.beans.BeanInfo#getPropertyDescriptors()
46: */
47: public PropertyDescriptor[] getPropertyDescriptors() {
48: return super.getPropertyDescriptors();
49: }
50: }
|