Subversion Repositories hibernate-spatial

Rev

Rev 121 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 121 Rev 165
Line 1... Line 1...
1
/**
1
/*
2
 * $Id: FeatureAdapter.java 121 2008-12-05 22:03:13Z maesenka $
2
 * $Id: FeatureAdapter.java 165 2010-03-11 20:27:08Z maesenka $
-
 
3
 *
-
 
4
 * This file is part of Hibernate Spatial, an extension to the
-
 
5
 * hibernate ORM solution for geographic data.
3
 *
6
 *
4
 * This file is part of Hibernate Spatial, an extension to the
-
 
5
 * hibernate ORM solution for geographic data.
-
 
6
 *
-
 
7
 * Copyright © 2008 Geovise BVBA
7
 * Copyright © 2007-2010 Geovise BVBA
8
 *
8
 *
9
 * This library is free software; you can redistribute it and/or
9
 * This library is free software; you can redistribute it and/or
10
 * modify it under the terms of the GNU Lesser General Public
10
 * modify it under the terms of the GNU Lesser General Public
11
 * License as published by the Free Software Foundation; either
11
 * License as published by the Free Software Foundation; either
12
 * version 2.1 of the License, or (at your option) any later version.
12
 * version 2.1 of the License, or (at your option) any later version.
Line 22... Line 22...
22
 *
22
 *
23
 * For more information, visit: http://www.hibernatespatial.org/
23
 * For more information, visit: http://www.hibernatespatial.org/
24
 */
24
 */
25
package org.hibernatespatial.readers;
25
package org.hibernatespatial.readers;
26
 
26
 
27
import java.lang.reflect.InvocationHandler;
-
 
28
import java.lang.reflect.Method;
-
 
29
import java.lang.reflect.Proxy;
-
 
30
 
-
 
31
import org.hibernate.EntityMode;
27
import org.hibernate.EntityMode;
32
import org.hibernate.metadata.ClassMetadata;
28
import org.hibernate.metadata.ClassMetadata;
33
import org.hibernate.property.Getter;
29
import org.hibernate.property.Getter;
34
import org.hibernate.util.ReflectHelper;
30
import org.hibernate.util.ReflectHelper;
35
import org.hibernatespatial.helper.FinderException;
31
import org.hibernatespatial.helper.FinderException;
36
import org.hibernatespatial.helper.GeometryPropertyFinder;
32
import org.hibernatespatial.helper.GeometryPropertyFinder;
37
 
33
 
-
 
34
import java.lang.reflect.InvocationHandler;
-
 
35
import java.lang.reflect.Method;
-
 
36
import java.lang.reflect.Proxy;
-
 
37
 
38
/**
38
/**
39
 * Adapts arbitrary objects to the {@link Feature} interface using dynamic proxying.
39
 * Adapts arbitrary objects to the {@link Feature} interface using dynamic proxying.
40
 *
-
 
41
 * @author Karel Maesen
-
 
42
 *
40
 *
-
 
41
 * @author Karel Maesen
43
 */
42
 */
44
public class FeatureAdapter {
43
public class FeatureAdapter {
146
 
146
 
147
}
147
}
148
 
148