Source Code Cross Referenced for FeatureCollectionType.java in  » GIS » GeoServer » net » opengis » wfs » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoServer » net.opengis.wfs 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * <copyright>
003:         * </copyright>
004:         *
005:         * $Id: FeatureCollectionType.java 7522 2007-09-12 22:00:10Z saul.farber $
006:         */package net.opengis.wfs;
007:
008:        import java.math.BigInteger;
009:        import java.util.Calendar;
010:
011:        import org.eclipse.emf.common.util.EList;
012:        import org.eclipse.emf.ecore.EObject;
013:
014:        /**
015:         * <!-- begin-user-doc -->
016:         * A representation of the model object '<em><b>Feature Collection Type</b></em>'.
017:         * <!-- end-user-doc -->
018:         *
019:         * <!-- begin-model-doc -->
020:         * 
021:         *             This type defines a container for the response to a
022:         *             GetFeature or GetFeatureWithLock request.  If the
023:         *             request is GetFeatureWithLock, the lockId attribute
024:         *             must be populated.  The lockId attribute can otherwise
025:         *             be safely ignored.
026:         * <!-- end-model-doc -->
027:         *
028:         * <p>
029:         * The following features are supported:
030:         * <ul>
031:         *   <li>{@link net.opengis.wfs.FeatureCollectionType#getLockId <em>Lock Id</em>}</li>
032:         *   <li>{@link net.opengis.wfs.FeatureCollectionType#getTimeStamp <em>Time Stamp</em>}</li>
033:         *   <li>{@link net.opengis.wfs.FeatureCollectionType#getNumberOfFeatures <em>Number Of Features</em>}</li>
034:         *   <li>{@link net.opengis.wfs.FeatureCollectionType#getFeature <em>Feature</em>}</li>
035:         * </ul>
036:         * </p>
037:         *
038:         * @see net.opengis.wfs.WfsPackage#getFeatureCollectionType()
039:         * @model extendedMetaData="name='FeatureCollectionType' kind='empty'"
040:         * @generated
041:         */
042:        public interface FeatureCollectionType extends EObject {
043:            /**
044:             * <!-- begin-user-doc -->
045:             * <p>
046:             * <pre>
047:             * &lt;xsd:attribute name="lockId" type="xsd:string" use="optional"&gt;
048:             *       &lt;xsd:annotation&gt;
049:             *          &lt;xsd:documentation&gt;
050:             *             The value of the lockId attribute is an identifier
051:             *             that a Web Feature Service generates when responding
052:             *             to a GetFeatureWithLock request.  A client application
053:             *             can use this value in subsequent operations (such as a
054:             *             Transaction request) to reference the set of locked
055:             *             features.
056:             *          &lt;/xsd:documentation&gt;
057:             *       &lt;/xsd:annotation&gt;
058:             *    &lt;/xsd:attribute&gt;
059:             * </pre>
060:             * </p>
061:             * <!-- end-user-doc -->
062:             *
063:             * @model
064:             */
065:            String getLockId();
066:
067:            /**
068:             * Sets the value of the '{@link net.opengis.wfs.FeatureCollectionType#getLockId <em>Lock Id</em>}' attribute.
069:             * <!-- begin-user-doc -->
070:             * <!-- end-user-doc -->
071:             * @param value the new value of the '<em>Lock Id</em>' attribute.
072:             * @see #getLockId()
073:             * @generated
074:             */
075:            void setLockId(String value);
076:
077:            /**
078:             * <!-- begin-user-doc -->
079:             * <p>
080:             * <pre>
081:             *   &lt;xsd:attribute name="timeStamp" type="xsd:dateTime" use="optional"&gt;
082:             *       &lt;xsd:annotation&gt;
083:             *          &lt;xsd:documentation&gt;
084:             *             The timeStamp attribute should contain the date and time
085:             *             that the response was generated.
086:             *          &lt;/xsd:documentation&gt;
087:             *       &lt;/xsd:annotation&gt;
088:             *    &lt;/xsd:attribute&gt;
089:             * </pre>
090:             * </p>
091:             * <!-- end-user-doc -->
092:             * @model
093:             */
094:            Calendar getTimeStamp();
095:
096:            /**
097:             * Sets the value of the '{@link net.opengis.wfs.FeatureCollectionType#getTimeStamp <em>Time Stamp</em>}' attribute.
098:             * <!-- begin-user-doc -->
099:             * <!-- end-user-doc -->
100:             * @param value the new value of the '<em>Time Stamp</em>' attribute.
101:             * @see #getTimeStamp()
102:             * @generated
103:             */
104:            void setTimeStamp(Calendar value);
105:
106:            /**
107:             * <!-- begin-user-doc -->
108:             * <p>
109:             * <pre>
110:             *   &lt;xsd:attribute name="numberOfFeatures"
111:             *                   type="xsd:nonNegativeInteger"
112:             *                   use="optional"&gt;
113:             *       &lt;xsd:annotation&gt;
114:             *          &lt;xsd:documentation&gt;
115:             *             The numberOfFeatures attribute should contain a
116:             *             count of the number of features in the response.
117:             *             That is a count of all features elements dervied
118:             *             from gml:AbstractFeatureType.
119:             *          &lt;/xsd:documentation&gt;
120:             *       &lt;/xsd:annotation&gt;
121:             *    &lt;/xsd:attribute&gt;
122:             * </pre>
123:             * </p>
124:             * <!-- end-user-doc -->
125:             * @model
126:             */
127:            BigInteger getNumberOfFeatures();
128:
129:            /**
130:             * Sets the value of the '{@link net.opengis.wfs.FeatureCollectionType#getNumberOfFeatures <em>Number Of Features</em>}' attribute.
131:             * <!-- begin-user-doc -->
132:             * <!-- end-user-doc -->
133:             * @param value the new value of the '<em>Number Of Features</em>' attribute.
134:             * @see #getNumberOfFeatures()
135:             * @generated
136:             */
137:            void setNumberOfFeatures(BigInteger value);
138:
139:            /**
140:             * Reference to a set of geotools feature collections.
141:             * @model type="org.geotools.feature.FeatureCollection"
142:             */
143:            EList getFeature();
144:        } // FeatureCollectionType
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.