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


01:        /*******************************************************************************
02:         * Copyright (c) 2000, 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.jface.text;
11:
12:        /**
13:         * Extension interface for {@link org.eclipse.jface.text.IDocument}.<p>
14:         *
15:         * It introduces the notion of sequentially rewriting a document. This is to tell a
16:         * document that a sequence of non-overlapping replace operation is about to be
17:         * performed. Implementers can use this knowledge for internal optimization.<p>
18:         *
19:         * Is also introduces the concept of post notification replaces. This is, a document
20:         * listener who is informed about a document change can cause a derived document
21:         * change. As the listener is not allowed to directly modify the document, it can
22:         * register a replace operation that is performed directly after all document listeners
23:         * have been notified.
24:         *
25:         * @since 2.0
26:         */
27:        public interface IDocumentExtension {
28:
29:            /**
30:             * Interface for a post notification replace operation.
31:             */
32:            public interface IReplace {
33:
34:                /**
35:                 * Executes the replace operation on the given document.
36:                 *
37:                 * @param document the document to be changed
38:                 * @param owner the owner of this replace operation
39:                 */
40:                void perform(IDocument document, IDocumentListener owner);
41:            }
42:
43:            /**
44:             * Callback for document listeners to be used inside <code>documentChanged</code>
45:             * to register a post notification replace operation on the document notifying them.
46:             *
47:             * @param owner the owner of the replace operation
48:             * @param replace the replace operation to be executed
49:             * @exception UnsupportedOperationException if <code>registerPostNotificationReplace</code>
50:             * 	is not supported by this document
51:             */
52:            void registerPostNotificationReplace(IDocumentListener owner,
53:                    IReplace replace) throws UnsupportedOperationException;
54:
55:            /**
56:             * Stops the processing of registered post notification replace operations until
57:             * <code>resumePostNotificationProcessing</code> is called.
58:             */
59:            void stopPostNotificationProcessing();
60:
61:            /**
62:             * Resumes the processing of post notification replace operations. If the queue of registered
63:             * <code>IDocumentExtension.IReplace</code> objects is not empty, they are immediately processed if the
64:             * document is not inside a replace operation. If the document is inside a replace operation,
65:             * they are processed directly after the replace operation has finished.
66:             */
67:            void resumePostNotificationProcessing();
68:
69:            /**
70:             * Tells the document that it is about to be sequentially rewritten. That is a
71:             * sequence of non-overlapping replace operations will be performed on it. The
72:             * <code>normalize</code> flag indicates whether the rewrite is performed from
73:             * the start of the document to its end or from an arbitrary start offset. <p>
74:             *
75:             * The document is considered being in sequential rewrite mode as long as
76:             * <code>stopSequentialRewrite</code> has not been called.
77:             *
78:             * @param normalize <code>true</code> if performed from the start to the end of the document
79:             * @deprecated since 3.1. Use {@link IDocumentExtension4#startRewriteSession(DocumentRewriteSessionType)} instead.
80:             */
81:            void startSequentialRewrite(boolean normalize);
82:
83:            /**
84:             * Tells the document that the sequential rewrite has been finished. This method
85:             * has only any effect if <code>startSequentialRewrite</code> has been called before.
86:             * @deprecated since 3.1. Use {@link IDocumentExtension4#stopRewriteSession(DocumentRewriteSession)} instead.
87:             */
88:            void stopSequentialRewrite();
89:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.