Source Code Cross Referenced for InsertedFeatureType.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) 


01:        /**
02:         * <copyright>
03:         * </copyright>
04:         *
05:         * $Id: InsertedFeatureType.java 7522 2007-09-12 22:00:10Z saul.farber $
06:         */package net.opengis.wfs;
07:
08:        import org.eclipse.emf.common.util.EList;
09:
10:        import org.eclipse.emf.ecore.EObject;
11:
12:        /**
13:         * <!-- begin-user-doc -->
14:         * A representation of the model object '<em><b>Inserted Feature Type</b></em>'.
15:         * <!-- end-user-doc -->
16:         *
17:         * <p>
18:         * The following features are supported:
19:         * <ul>
20:         *   <li>{@link net.opengis.wfs.InsertedFeatureType#getFeatureId <em>Feature Id</em>}</li>
21:         *   <li>{@link net.opengis.wfs.InsertedFeatureType#getHandle <em>Handle</em>}</li>
22:         * </ul>
23:         * </p>
24:         *
25:         * @see net.opengis.wfs.WfsPackage#getInsertedFeatureType()
26:         * @model extendedMetaData="name='InsertedFeatureType' kind='elementOnly'"
27:         * @generated
28:         */
29:        public interface InsertedFeatureType extends EObject {
30:            /**
31:             * Returns the value of the '<em><b>Feature Id</b></em>' attribute list.
32:             * The list contents are of type {@link java.lang.Object}.
33:             * <!-- begin-user-doc -->
34:             * <!-- end-user-doc -->
35:             * <!-- begin-model-doc -->
36:             * 
37:             *                   This is the feature identifier for the newly created
38:             *                   feature.  The feature identifier may be generated by
39:             *                   the WFS or provided by the client (depending on the 
40:             *                   value of the idgen attribute).  In all cases of idgen
41:             *                   values, the feature id must be reported here.
42:             *                
43:             * <!-- end-model-doc -->
44:             * @return the value of the '<em>Feature Id</em>' attribute list.
45:             * @see net.opengis.wfs.WFSPackage#getInsertedFeatureType_FeatureId()
46:             * @model type="org.opengis.filter.identity.FeatureId"
47:             */
48:            EList getFeatureId();
49:
50:            /**
51:             * Returns the value of the '<em><b>Handle</b></em>' attribute.
52:             * <!-- begin-user-doc -->
53:             * <!-- end-user-doc -->
54:             * <!-- begin-model-doc -->
55:             * 
56:             *                If the insert element that generated this feature
57:             *                had a value for the "handle" attribute then a WFS
58:             *                may report it using this attribute to correlate
59:             *                the feature created with the action that created it.
60:             * <!-- end-model-doc -->
61:             * @return the value of the '<em>Handle</em>' attribute.
62:             * @see #setHandle(String)
63:             * @see net.opengis.wfs.WfsPackage#getInsertedFeatureType_Handle()
64:             * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
65:             *        extendedMetaData="kind='attribute' name='handle'"
66:             * @generated
67:             */
68:            String getHandle();
69:
70:            /**
71:             * Sets the value of the '{@link net.opengis.wfs.InsertedFeatureType#getHandle <em>Handle</em>}' attribute.
72:             * <!-- begin-user-doc -->
73:             * <!-- end-user-doc -->
74:             * @param value the new value of the '<em>Handle</em>' attribute.
75:             * @see #getHandle()
76:             * @generated
77:             */
78:            void setHandle(String value);
79:
80:        } // InsertedFeatureType
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.