Source Code Cross Referenced for LocalObject.java in  » Collaboration » JacORB » org » omg » CORBA » 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 » Collaboration » JacORB » org.omg.CORBA 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /***** Copyright (c) 2000 Object Management Group. Unlimited rights to 
002:               duplicate and use this code are hereby granted provided that this 
003:               copyright notice is included.
004:         *****/package org.omg.CORBA;
005:
006:        import org.omg.CORBA.portable.*;
007:
008:        public abstract class LocalObject implements  org.omg.CORBA.Object {
009:            public LocalObject() {
010:            }
011:
012:            public boolean _is_equivalent(org.omg.CORBA.Object that) {
013:                return equals(that);
014:            }
015:
016:            public boolean _non_existent() {
017:                return false;
018:            }
019:
020:            public int _hash(int maximum) {
021:                return hashCode();
022:            }
023:
024:            public String[] _ids() {
025:                throw new NO_IMPLEMENT();
026:            }
027:
028:            public boolean _is_a(String repositoryId) {
029:                String ids[] = _ids();
030:                for (int i = 0; i < ids.length; i++) {
031:                    if (repositoryId.equals(ids[i]))
032:                        return true;
033:                }
034:
035:                return false;
036:            }
037:
038:            public org.omg.CORBA.Object _duplicate() {
039:                throw new org.omg.CORBA.NO_IMPLEMENT();
040:            }
041:
042:            public void _release() {
043:                throw new org.omg.CORBA.NO_IMPLEMENT();
044:            }
045:
046:            public Request _request(String operation) {
047:                throw new org.omg.CORBA.NO_IMPLEMENT();
048:            }
049:
050:            public org.omg.CORBA.Object _get_component() {
051:                // There is an inconsistency between CORBA 3.0 spec. and 'IDL to Java 
052:                // mapping' spec. The former says that the operation should return 
053:                // the exception with minor code 8. But the latter suggests to return 
054:                // a default instance of NO_IMPLEMENT exception which conveys minor code 0.
055:                // Which on to follow?
056:                //throw new org.omg.CORBA.NO_IMPLEMENT(8, org.omg.CORBA.CompletionStatus.COMPLETED_NO);
057:                throw new org.omg.CORBA.NO_IMPLEMENT();
058:            }
059:
060:            public Request _create_request(Context ctx, String operation,
061:                    NVList arg_list, NamedValue result) {
062:                throw new org.omg.CORBA.NO_IMPLEMENT();
063:            }
064:
065:            public Request _create_request(Context ctx, String operation,
066:                    NVList arg_list, NamedValue result,
067:                    ExceptionList exceptions, ContextList contexts) {
068:                throw new org.omg.CORBA.NO_IMPLEMENT();
069:            }
070:
071:            /**
072:             *@deprecated Deprecated by CORBA 2.3.
073:             */
074:            public org.omg.CORBA.InterfaceDef _get_interface() {
075:                throw new org.omg.CORBA.NO_IMPLEMENT();
076:            }
077:
078:            public org.omg.CORBA.Object _get_interface_def() {
079:                throw new org.omg.CORBA.NO_IMPLEMENT();
080:            }
081:
082:            public org.omg.CORBA.ORB _orb() {
083:                throw new org.omg.CORBA.NO_IMPLEMENT();
084:            }
085:
086:            public org.omg.CORBA.Policy _get_policy(int policy_type) {
087:                throw new org.omg.CORBA.NO_IMPLEMENT();
088:            }
089:
090:            public org.omg.CORBA.DomainManager[] _get_domain_managers() {
091:                throw new org.omg.CORBA.NO_IMPLEMENT();
092:            }
093:
094:            public org.omg.CORBA.Object _set_policy_override(
095:                    org.omg.CORBA.Policy[] policies,
096:                    org.omg.CORBA.SetOverrideType set_add) {
097:                throw new org.omg.CORBA.NO_IMPLEMENT();
098:            }
099:
100:            public boolean _is_local() {
101:                throw new org.omg.CORBA.NO_IMPLEMENT();
102:            }
103:
104:            public org.omg.CORBA.portable.ServantObject _servant_preinvoke(
105:                    String operation, Class expectedType) {
106:                throw new org.omg.CORBA.NO_IMPLEMENT();
107:            }
108:
109:            public void _servant_postinvoke(
110:                    org.omg.CORBA.portable.ServantObject servant) {
111:                throw new org.omg.CORBA.NO_IMPLEMENT();
112:            }
113:
114:            public org.omg.CORBA.portable.OutputStream _request(
115:                    String operation, boolean responseExpected) {
116:                throw new org.omg.CORBA.NO_IMPLEMENT();
117:            }
118:
119:            public org.omg.CORBA.portable.InputStream _invoke(
120:                    org.omg.CORBA.portable.OutputStream output)
121:                    throws org.omg.CORBA.portable.ApplicationException,
122:                    org.omg.CORBA.portable.RemarshalException {
123:                throw new org.omg.CORBA.NO_IMPLEMENT();
124:            }
125:
126:            public void _releaseReply(org.omg.CORBA.portable.InputStream input) {
127:                throw new org.omg.CORBA.NO_IMPLEMENT();
128:            }
129:
130:            public boolean validate_connection() {
131:                throw new org.omg.CORBA.NO_IMPLEMENT();
132:            }
133:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.