org.netbeans.editor

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 Netbeans » editor » org.netbeans.editor 
org.netbeans.editor
Java Source File NameTypeComment
Abbrev.javaClass Abbreviation support allowing to expand defined character sequences into the expanded strings or call the arbitrary action.
Acceptor.javaInterface Accept or reject given character.
AcceptorFactory.javaClass
ActionFactory.javaClass Actions that are not considered basic and therefore they are not included directly in BaseKit, but here.
AdjustFinder.javaInterface Advanced finder that can adjust the start and limit position of the search.
Analyzer.javaClass
AnnotationDesc.javaClass Description of the annotation.
Annotations.javaClass Annotations class act as data model containing all annotations attached to one document.
AnnotationType.javaClass Definition of the annotation type.
AnnotationTypes.javaClass Registry of all annotation types.
AtomicLockDocument.javaInterface Document that supports atomic locking allows for transactional modifications. The document is write-locked during the whole atomic operation.
AtomicLockEvent.javaClass Event for atomic lock listener notifications.
AtomicLockListener.javaInterface Listener for begining and end of the atomic locking.
BaseAction.javaClass This is the parent of majority of the actions.
BaseCaret.javaClass
BaseDocument.javaClass
BaseDocumentEvent.javaClass
BaseElement.javaClass Element implementation.
BaseImageTokenID.javaClass Token-id with the fixed token image.
BaseKit.javaClass
BasePosition.javaClass Position in document.
BaseSettingsInitializer.javaClass Initializer for the editor settings.
BaseTextUI.javaClass
BaseTokenCategory.javaClass Base implementation of the token category.
BaseTokenID.javaClass Base implementation of the token-id.
BaseView.javaClass Base abstract view serves as parent for both leaf and branch views.
CharSeq.javaInterface Subset of functionality of CharSequence present in JDK1.4.
CodeFoldingSideBar.javaClass Code Folding Side Bar.
CollapsedView.javaClass View over collapsed area of the fold.
Coloring.javaClass Immutable class that stores font and foreground and background colors. The coloring can be applied to either the drawing context, component or some other coloring.
CustomFoldManager.javaClass Fold maintainer that creates and updates custom folds.
DelegateAction.javaClass Action that delegates on delegate action.
DialogSupport.javaClass DialogSupport is factory based class for creating dialogs of certain behaviour.
DocumentContent.javaClass Content of the document.
DocumentFinder.javaClass
DocumentUtilities.javaClass Various document-related utilities.
DrawContext.javaInterface This interface provides methods for getting and setting various drawing attributes.
DrawEngine.javaClass This class is responsible for drawing editor components.
DrawEngineDocView.javaClass View of the whole document supporting the code folding.
DrawEngineFakeDocView.javaClass
DrawEngineLineView.javaClass Line view implementation.
DrawEngineTest.javaClass
DrawGraphics.javaInterface Draw graphics functions as abstraction over various kinds of drawing.
DrawLayer.javaInterface Draw layer applies changes to draw context during painting process. Each extended UI has its own set of layers. It can currently include changes to font bold and italic attributes, and foreground and background color (and probably more in future). These changes are made by draw layer to draw context in updateContext() method. Draw layers form double-linked lists.
DrawLayerFactory.javaClass
DrawLayerList.javaClass Draw layer list stores multiple draw-layers sorted according to their visibility which is the integer giving the z-order in which the layers are sorted.
EditorDebug.javaClass
EditorState.javaClass This singleton class is an editor state encapsulation object.
EditorUI.javaClass Editor UI for the component.
Finder.javaInterface Finders are used to find some information in document without creating copy of the data.
FinderFactory.javaClass Various finders are located here.
FindSupport.javaClass
FixLineSyntaxState.javaClass Undoable edit that fixes syntax state infos (stored at beginings of lines) after each document modification.
FoldingToolTip.javaClass
FoldMultiLineView.javaClass
FontMetricsCache.javaClass Static cache that holds the font metrics for the fonts.
Formatter.javaClass Various services related to indentation and text formatting are located here.
GapObjectArray.javaClass Implementation of ObjectArray that contains a gap which helps to speed up inserts/removals close to the gap.
GapStart.javaInterface A given object can publish this interface if it allows an efficient access to its gap-based data storage and wants to give its clients a hint about how to access the data efficiently.

For example javax.swing.text.Document instance having gap-based document content can allow to get an instance of GapStart as a property:

 GapStart gs = (GapStart)doc.getProperty(GapStart.class);
 int gapStart = gs.getGapStart();
 
 Once the start of the gap is known the client can optimize
 access to the document's data.
GlyphGutter.javaClass GlyphGutter is component for displaying line numbers and annotation glyph icons.
GuardedDocument.javaClass
GuardedDocumentEvent.javaClass Attempt to insert or remove from the guarded block has been done.
GuardedException.javaClass Attempt to insert or remove from the guarded block has been done.
HighlightingDrawLayer.javaClass
ImageTokenID.javaInterface Token-id with the fixed token image.
ImplementationProvider.javaClass This is provider of implementation.
InvalidMarkException.javaClass This exception is thrown either if the mark is invalid and it should be valid (getOffset(), getLine(), remove()) or on the oposite side if the mark is valid and it shouldn't be i.e.
JumpList.javaClass The list of marked positions in text components.
KeySequenceInputPanel.javaClass This class could be used as input of sequence of KeyStrokes.
LeafElement.javaClass Leaf element is used on the leaf level of element tree.
LeafView.javaClass Leaf view implementation.
LineElement.javaClass Line element implementation.
LineRootElement.javaClass Line root element implementation.
LineSeparatorConversion.javaClass Converters handling the various line separators.
LocalBaseAction.javaClass Short description of this extension of base action is localized by this (org.netbeans.editor) package by using BaseKit.class bundle class.
LocaleSupport.javaClass All the strings that should be localized will go through this place.
MacroDialogSupport.javaClass The support for creating macros.
MacroSavePanel.javaClass The component for displaying and editing just recorded macro.
Mark.javaClass Class defining basic type of mark.
MarkBlock.javaClass Block of text created using two marks.
MarkBlockChain.javaClass
MarkChain.javaClass
MarkFactory.javaClass
MarkVector.javaClass Container for MultiMark for the document.
MultiKeyBinding.javaClass Extension of JTextComponent.KeyBinding to hold several successive keystrokes.
MultiKeymap.javaClass
MultiMark.javaClass Multipurpose mark that can be used both as the traditional swing mark or the bias mark.
ObjectArray.javaInterface Interface that allows to bridge various implementations of the arrays of objects (especially gap arrays).
ObjectArrayUtilities.javaClass Utilities over object array.
PlainDocumentCompatibilityRandomTest.javaClass Test compatibility of the editor's document implementation with the PlainDocument.
PopupManager.javaClass Popup manager allows to display an arbitrary popup component over the underlying text component.
PrintContainer.javaInterface Container for printed text.
Registry.javaClass All the documents and components register here so that they become available to the processing that crosses different components and documents such as cross document position stack or word matching.
SegmentCache.javaClass This class caches instances of javax.swing.text.Segment to prevent excessive object creation.
Settings.javaClass Configurable settings that editor uses.
SettingsChangeEvent.javaClass
SettingsChangeListener.javaInterface
SettingsDefaults.javaClass Default values for the settings.
SettingsNames.javaClass Names of the base settings defined in the editor.
SettingsTest.javaClass
SettingsUtil.javaClass
SideBarFactory.javaInterface This interface should implement all components that need to be added in the editor sidebar.
StatusBar.javaClass
StringMap.javaClass Support for comparing part of char array to hash map with strings as keys.
Syntax.javaClass Lexical analyzer that works on a given text buffer.
SyntaxDebug.javaClass
SyntaxSeg.javaClass Encapsulation of a special static segment used by syntax scanners.
SyntaxSupport.javaClass
SyntaxUpdateTokens.javaClass Notification about the tokens being relexed as result of a document modification.
TextBatchProcessor.javaInterface Process the batches of the text in the document.
TokenCategory.javaInterface Token category enables dividing the tokens into groups.
TokenContext.javaClass Token context defines the environment in which only a limited set of tokens can be used.
TokenContextPath.javaClass Immutable and 'interned' wrapper holding an array of the contexts starting with the original context in which the token is defined and ending with the target context from which the token is being returned.
TokenID.javaInterface Token-id is a unique identifier of a particular token.
TokenItem.javaInterface Token-item presents a token as a piece information without dependence on a character buffer and it enables to chain the token-items in both directions.
TokenProcessor.javaInterface
Utilities.javaClass Various useful editor functions.
WeakEventListenerList.javaClass Class that can hold the list of event listeners in a "weak" manner.
WeakPropertyChangeSupport.javaClass
WeakTimerListener.javaClass Action listener that has a weak reference to the source action listener so it doesn't prevent it to be garbage collected.
WordMatch.javaClass Word matching support enables to fill in the rest of the word when knowing the begining of the word.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.