Source Code Cross Referenced for IJavaModifiers.java in  » IDE-Eclipse » jdt » org » eclipse » jdt » debug » core » 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 » IDE Eclipse » jdt » org.eclipse.jdt.debug.core 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*******************************************************************************
002:         * Copyright (c) 2000, 2005 IBM Corporation and others.
003:         * All rights reserved. This program and the accompanying materials
004:         * are made available under the terms of the Eclipse Public License v1.0
005:         * which accompanies this distribution, and is available at
006:         * http://www.eclipse.org/legal/epl-v10.html
007:         * 
008:         * Contributors:
009:         *     IBM Corporation - initial API and implementation
010:         *******************************************************************************/package org.eclipse.jdt.debug.core;
011:
012:        import org.eclipse.debug.core.DebugException;
013:
014:        /**
015:         * Modifiers common to Java debug elements that have  associated Java
016:         * member declarations. For example, the method associated with a stack frame,
017:         * or the field associated with a variable.
018:         * <p>
019:         * Clients are not intended to implement this interface.
020:         * </p>
021:         */
022:        public interface IJavaModifiers {
023:
024:            /**
025:             * Returns whether the associated Java construct is declared as public.
026:             *
027:             * @return whether the associated Java construct is declared as public
028:             * @exception DebugException if this method fails.  Reasons include:
029:             * <ul><li>Failure communicating with the VM.  The DebugException's
030:             * status code contains the underlying exception responsible for
031:             * the failure.</li></ul>
032:             */
033:            public boolean isPublic() throws DebugException;
034:
035:            /**
036:             * Returns whether the associated Java construct is declared as private.
037:             *
038:             * @return whether the associated Java construct is declared as private
039:             * @exception DebugException if this method fails.  Reasons include:
040:             * <ul><li>Failure communicating with the VM.  The DebugException's
041:             * status code contains the underlying exception responsible for
042:             * the failure.</li></ul>
043:             */
044:            public boolean isPrivate() throws DebugException;
045:
046:            /**
047:             * Returns whether the associated Java construct is declared as protected.
048:             *
049:             * @return whether the associated Java construct is declared as protected
050:             * @exception DebugException if this method fails.  Reasons include:
051:             * <ul><li>Failure communicating with the VM.  The DebugException's
052:             * status code contains the underlying exception responsible for
053:             * the failure.</li></ul>
054:             */
055:            public boolean isProtected() throws DebugException;
056:
057:            /**
058:             * Returns whether the associated Java construct is declared with
059:             * no protection modifier (package private protection).
060:             *
061:             * @return whether the associated Java construct is declared as package private
062:             * @exception DebugException if this method fails.  Reasons include:
063:             * <ul><li>Failure communicating with the VM.  The DebugException's
064:             * status code contains the underlying exception responsible for
065:             * the failure.</li></ul>
066:             */
067:            public boolean isPackagePrivate() throws DebugException;
068:
069:            /**
070:             * Returns whether the associated Java construct is declared as final.
071:             * 
072:             * @return whether the associated Java construct is declared as final
073:             * @exception DebugException if this method fails.  Reasons include:
074:             * <ul><li>Failure communicating with the VM.  The DebugException's
075:             * status code contains the underlying exception responsible for
076:             * the failure.</li></ul>
077:             */
078:            public boolean isFinal() throws DebugException;
079:
080:            /**
081:             * Returns whether the associated Java construct is declared as static.
082:             * 
083:             * @return whether the associated Java construct is declared as static
084:             * @exception DebugException if this method fails.  Reasons include:
085:             * <ul><li>Failure communicating with the VM.  The DebugException's
086:             * status code contains the underlying exception responsible for
087:             * the failure.</li></ul>
088:             */
089:            public boolean isStatic() throws DebugException;
090:
091:            /**
092:             * Returns whether the associated Java construct is synthetic. 
093:             * Synthetic members are generated by the compiler
094:             * and are not present in source code.
095:             *
096:             * @return whether the associated Java construct is synthetic
097:             * @exception DebugException if this method fails.  Reasons include:
098:             * <ul><li>Failure communicating with the VM.  The DebugException's
099:             * status code contains the underlying exception responsible for
100:             * the failure.</li></ul>
101:             */
102:            public boolean isSynthetic() throws DebugException;
103:
104:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.