Source Code Cross Referenced for NonRuleBasedDamagerRepairer.java in  » IDE-Eclipse » ui-examples » org » eclipse » ui » examples » templateeditor » editors » 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 » ui examples » org.eclipse.ui.examples.templateeditor.editors 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*******************************************************************************
002:         * Copyright (c) 2000, 2006 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.ui.examples.templateeditor.editors;
011:
012:        import org.eclipse.jface.text.BadLocationException;
013:        import org.eclipse.jface.text.DocumentEvent;
014:        import org.eclipse.jface.text.IDocument;
015:        import org.eclipse.jface.text.IRegion;
016:        import org.eclipse.jface.text.ITypedRegion;
017:        import org.eclipse.jface.text.Region;
018:        import org.eclipse.jface.text.TextAttribute;
019:        import org.eclipse.jface.text.TextPresentation;
020:        import org.eclipse.jface.text.presentation.IPresentationDamager;
021:        import org.eclipse.jface.text.presentation.IPresentationRepairer;
022:        import org.eclipse.swt.custom.StyleRange;
023:
024:        import org.eclipse.core.runtime.Assert;
025:
026:        public class NonRuleBasedDamagerRepairer implements 
027:                IPresentationDamager, IPresentationRepairer {
028:
029:            /** The document this object works on */
030:            protected IDocument fDocument;
031:            /** The default text attribute if non is returned as data by the current token */
032:            protected TextAttribute fDefaultTextAttribute;
033:
034:            /**
035:             * Creates a new damager/repairer.
036:             * 
037:             * @param defaultTextAttribute the default text attribute for all detected regions
038:             */
039:            public NonRuleBasedDamagerRepairer(
040:                    TextAttribute defaultTextAttribute) {
041:                Assert.isNotNull(defaultTextAttribute);
042:                fDefaultTextAttribute = defaultTextAttribute;
043:            }
044:
045:            /*
046:             * @see org.eclipse.jface.text.presentation.IPresentationRepairer#setDocument(org.eclipse.jface.text.IDocument)
047:             */
048:            public void setDocument(IDocument document) {
049:                fDocument = document;
050:            }
051:
052:            /**
053:             * Returns the end offset of the line that contains the specified offset or
054:             * if the offset is inside a line delimiter, the end offset of the next
055:             * line.
056:             * 
057:             * @param offset the offset whose line end offset must be computed
058:             * @return the line end offset for the given offset
059:             * @exception BadLocationException if offset is invalid in the current document
060:             */
061:            protected int endOfLineOf(int offset) throws BadLocationException {
062:
063:                IRegion info = fDocument.getLineInformationOfOffset(offset);
064:                if (offset <= info.getOffset() + info.getLength())
065:                    return info.getOffset() + info.getLength();
066:
067:                int line = fDocument.getLineOfOffset(offset);
068:                try {
069:                    info = fDocument.getLineInformation(line + 1);
070:                    return info.getOffset() + info.getLength();
071:                } catch (BadLocationException x) {
072:                    return fDocument.getLength();
073:                }
074:            }
075:
076:            /*
077:             * @see org.eclipse.jface.text.presentation.IPresentationDamager#getDamageRegion(org.eclipse.jface.text.ITypedRegion, org.eclipse.jface.text.DocumentEvent, boolean)
078:             */
079:            public IRegion getDamageRegion(ITypedRegion partition,
080:                    DocumentEvent event, boolean documentPartitioningChanged) {
081:                if (!documentPartitioningChanged) {
082:                    try {
083:
084:                        IRegion info = fDocument
085:                                .getLineInformationOfOffset(event.getOffset());
086:                        int start = Math.max(partition.getOffset(), info
087:                                .getOffset());
088:                        int end = event.getOffset()
089:                                + (event.getText() == null ? event.getLength()
090:                                        : event.getText().length());
091:
092:                        if (info.getOffset() <= end
093:                                && end <= info.getOffset() + info.getLength()) {
094:                            // optimize the case of the same line
095:                            end = info.getOffset() + info.getLength();
096:                        } else
097:                            end = endOfLineOf(end);
098:
099:                        end = Math.min(partition.getOffset()
100:                                + partition.getLength(), end);
101:                        return new Region(start, end - start);
102:
103:                    } catch (BadLocationException x) {
104:                    }
105:                }
106:
107:                return partition;
108:            }
109:
110:            /*
111:             * @see org.eclipse.jface.text.presentation.IPresentationRepairer#createPresentation(org.eclipse.jface.text.TextPresentation, org.eclipse.jface.text.ITypedRegion)
112:             */
113:            public void createPresentation(TextPresentation presentation,
114:                    ITypedRegion region) {
115:                addRange(presentation, region.getOffset(), region.getLength(),
116:                        fDefaultTextAttribute);
117:            }
118:
119:            /**
120:             * Adds style information to the given text presentation.
121:             * 
122:             * @param presentation the text presentation to be extended
123:             * @param offset the offset of the range to be styled
124:             * @param length the length of the range to be styled
125:             * @param attr the attribute describing the style of the range to be styled
126:             */
127:            protected void addRange(TextPresentation presentation, int offset,
128:                    int length, TextAttribute attr) {
129:                if (attr != null)
130:                    presentation.addStyleRange(new StyleRange(offset, length,
131:                            attr.getForeground(), attr.getBackground(), attr
132:                                    .getStyle()));
133:            }
134:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.