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


01:        /*******************************************************************************
02:         * Copyright (c) 2003, 2006 IBM Corporation and others.
03:         * All rights reserved. This program and the accompanying materials
04:         * are made available under the terms of the Eclipse Public License v1.0
05:         * which accompanies this distribution, and is available at
06:         * http://www.eclipse.org/legal/epl-v10.html
07:         *
08:         * Contributors:
09:         *     IBM Corporation - initial API and implementation
10:         *******************************************************************************/package org.eclipse.jdt.debug.core;
11:
12:        import org.eclipse.core.runtime.CoreException;
13:
14:        /**
15:         * A line breakpoint identified by its source file name and/or path, and
16:         * stratum that it is relative to.
17:         * <p>
18:         * This interface is not intended to be implemented by clients.
19:         * </p>
20:         * @since 3.0
21:         */
22:        public interface IJavaStratumLineBreakpoint extends IJavaLineBreakpoint {
23:
24:            /**
25:             * Returns the type name pattern this breakpoint uses to identify types
26:             * in which to install itself. Patterns may begin or end with '*'. Will
27:             * not return <code>null</code>. In the case that a stratum breakpoint
28:             * was created with a <code>null</code> pattern, "*" is returned.
29:             * <p>
30:             * Multiple patterns can be specified in this breakpoint by delimiting
31:             * the patterns with a comma - e.g. "x.y.z,a.b.c". 
32:             * </p>
33:             * @return the type name patterns this breakpoint uses to identify types
34:             *  in which to install itself.
35:             * @exception CoreException if unable to access the property from
36:             *  this breakpoint's underlying marker
37:             */
38:            public String getPattern() throws CoreException;
39:
40:            /**
41:             * Returns the simple name of the source file in which this breakpoint
42:             * is set, or <code>null</code>. When this breakpoint specifies a
43:             * source file name, this breakpoint is only installed in types whose
44:             * source file name debug attribute matches this value, relative
45:             * to this breakpoint's stratum.
46:             * 
47:             * @return the source file name in which this breakpoint is set, or
48:             *  <code>null</code>
49:             * @exception CoreException if unable to access the property from
50:             *  this breakpoint's underlying marker
51:             */
52:            public String getSourceName() throws CoreException;
53:
54:            /**
55:             * Returns the stratum that this breakpoint's source name, source path,
56:             * and line number are relative to, or <code>null</code> if this breakpoint
57:             * is relative to a type's default stratum.
58:             *  
59:             * @return the stratum that this breakpoint's source name, source path,
60:             * and line number are relative to, or <code>null</code>
61:             * @throws CoreException if unable to access the property from this
62:             *  breakpoint's underlying marker
63:             */
64:            public String getStratum() throws CoreException;
65:
66:            /**
67:             * Returns the qualified source file path in which this breakpoint is set,
68:             * or <code>null</code>. When specified, this breakpoint is
69:             * only installed in types whose source file path debug attribute
70:             * matches this value, relative to this breakpoint's stratum. 
71:             * 
72:             * @return the qualified source file path in which this breakpoint is set,
73:             * or <code>null</code>
74:             * @throws CoreException
75:             */
76:            public String getSourcePath() throws CoreException;
77:
78:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.