org.eclipse.jface.text.source

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 » jface » org.eclipse.jface.text.source 
org.eclipse.jface.text.source
Package-level Javadoc Provides a framework for connecting document regions with annotations and for displaying those annotations in combination with an ITextViewer. ISourceViewer combines annotation support and all text viewer add-ons.

Package Specification

 ISourceViewer defines the concept of a document based, editable viewer supporting visual annotations. ISourceViewer supports document-specific and viewer-specific annotations attached to the viewer's input document. An ISourceViewer uses an IAnnotationModel to manage annotations and to inform implementers of IAnnotationModelListener about changes in respect to annotations. An IVerticalRuler represents an IAnnotationModel access adapter for an SWT widget capapble of display annotations.  This package also provides default implementations for all defined interfaces.
 
Java Source File NameTypeComment
AbstractRulerColumn.javaClass Abstract implementation of a IVerticalRulerColumn that uses a Canvas to draw the ruler contents and which handles scrolling and mouse selection.

Painting

Subclasses can hook into the paint loop at three levels:

Invalidation

Subclasses may call AbstractRulerColumn.redraw() to mark the entire ruler as needing to be redrawn. Alternatively, use AbstractRulerColumn.redraw(ILineRange) to only invalidate a certain line range, for example due to changes to the display model.

Configuration

Subclasses can set the following properties.
AnnotationBarHoverManager.javaClass This manager controls the layout, content, and visibility of an information control in reaction to mouse hover events issued by the vertical ruler of a source viewer.
AnnotationColumn.javaClass
AnnotationPainter.javaClass Paints decorations for annotations provided by an annotation model and/or highlights them in the associated source viewer.

The annotation painter can be configured with drawing strategies.

AnnotationRulerColumn.javaClass A vertical ruler column showing graphical representations of annotations.
ChangeRulerColumn.javaClass A vertical ruler column displaying line numbers and serving as a UI for quick diff.
CompositeRuler.javaClass Standard implementation of org.eclipse.jface.text.source.IVerticalRuler .

This ruler does not have a a visual representation of its own.

DefaultAnnotationHover.javaClass Standard implementation of org.eclipse.jface.text.source.IAnnotationHover .
DefaultCharacterPairMatcher.javaClass A character pair matcher that matches a specified set of character pairs against each other.
IAnnotationAccess.javaInterface An annotation access provides access to information that is not available via the API of org.eclipse.jface.text.source.Annotation .
IAnnotationAccessExtension.javaInterface Extension interface for org.eclipse.jface.text.source.IAnnotationAccess .

This interface replaces the methods of IAnnotationAccess.

This interface provides

  • a label for the annotation type of a given annotation
  • the paint layer of a given annotation
  • means to paint a given annotation
  • information about the type hierarchy of the annotation type of a given annotation
    • .
IAnnotationAccessExtension2.javaInterface Extension interface for org.eclipse.jface.text.source.IAnnotationAccess .

This interface allows clients to set a quick assist assistant.

IAnnotationHover.javaInterface Provides the information to be displayed in a hover popup window which appears over the presentation area of annotations.

In order to provide backward compatibility for clients of IAnnotationHover, extension interfaces are used as a means of evolution.

IAnnotationHoverExtension.javaInterface
IAnnotationHoverExtension2.javaInterface
IAnnotationPresentation.javaInterface Interface for annotations that can take care of their own visible representation.
IChangeRulerColumn.javaInterface An IChangeRulerColumn can display quick diff information.
ICharacterPairMatcher.javaInterface A character pair matcher finds to a character at a certain document offset the matching peer character.
ILineDiffer.javaInterface Protocol that allows direct access to line information.
ILineDifferExtension.javaInterface Extension interface for ILineDiffer .

Introduces the concept of suspending a differ.

ILineDifferExtension2.javaInterface Extension interface for ILineDiffer .
ILineDiffInfo.javaInterface Describes the change state of one line, which consists of the state of the line itself, which can be UNCHANGED, CHANGED or ADDED, and the number of deleted lines before and after this line.
ILineRange.javaInterface Describes a range of lines.

Note that the number of lines is 1-based, e.g.

ImageUtilities.javaClass Provides methods for drawing images onto a canvas.
IOverviewRuler.javaInterface This interface defines a visual component which may serve text viewers as an overview annotation presentation area.
ISharedTextColors.javaInterface Manages SWT color objects.
ISourceViewer.javaInterface In addition to the text viewer functionality a source viewer supports:
  • visual annotations based on an annotation model
  • visual range indication
  • management of text viewer add-ons
  • explicit configuration
It is assumed that range indication and visual annotations are shown inside the same presentation area.
ISourceViewerExtension.javaInterface Extension interface org.eclipse.jface.text.source.ISourceViewer .

Extends the source viewer with the concept of an annotation overview.

ISourceViewerExtension2.javaInterface Extension interface for org.eclipse.jface.text.source.ISourceViewer .

Allows the source viewer to roll back a previous configuration process and allows clients access to the viewer's visual annotation model.

ISourceViewerExtension3.javaInterface Extension interface for org.eclipse.jface.text.source.ISourceViewer .

It introduces the concept of a quick assist assistant and provides access to the quick assist invocation context.

IVerticalRuler.javaInterface This interface defines a visual component which may serve text viewers as an annotation presentation area.
IVerticalRulerColumn.javaInterface A vertical ruler column is an element that can be added to a composite vertical ruler ( org.eclipse.jface.text.source.CompositeRuler ).
IVerticalRulerExtension.javaInterface Extension interface for IVerticalRuler .
IVerticalRulerInfo.javaInterface A vertical ruler is a visual component which may serve text viewers as an annotation presentation area.
IVerticalRulerInfoExtension.javaInterface Extension interface for org.eclipse.jface.text.source.IVerticalRulerInfo .
IVerticalRulerListener.javaInterface Interface for listening to annotation related events happening on a vertical ruler.
JFaceTextMessages.javaClass Accessor for the JFaceTextMessages.properties file in package org.eclipse.jface.text.
LineChangeHover.javaClass A hover for line oriented diffs.
LineNumberChangeRulerColumn.javaClass A vertical ruler column displaying line numbers and serving as a UI for quick diff.
LineNumberRulerColumn.javaClass A vertical ruler column displaying line numbers.
LineRange.javaClass Default implementation of ILineRange .
MatchingCharacterPainter.javaClass Highlights the peer character matching the character near the caret position.
OverviewRuler.javaClass Ruler presented next to a source viewer showing all annotations of the viewer's annotation model in a compact format.
OverviewRulerHoverManager.javaClass This manager controls the layout, content, and visibility of an information control in reaction to mouse hover events issued by the overview ruler of a source viewer.
SourceViewer.javaClass SWT based implementation of org.eclipse.jface.text.source.ISourceViewer and its extension interfaces.
SourceViewerConfiguration.javaClass This class bundles the configuration space of a source viewer.
TextInvocationContext.javaClass Text quick assist invocation context.
VerticalRuler.javaClass A vertical ruler which is connected to a text viewer.
VerticalRulerEvent.javaClass An event sent to org.eclipse.jface.text.source.IVerticalRulerListener instances when annotation related event occurs on the vertical ruler.
VisualAnnotationModel.javaClass Annotation model for visual annotations.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.