Java Doc for Debug.java in  » Swing-Library » jEdit » org » gjt » sp » jedit » 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 » Swing Library » jEdit » org.gjt.sp.jedit 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.gjt.sp.jedit.Debug

Debug
public class Debug (Code)
This class contains various debugging flags mainly useful for core development.
since:
   jEdit 4.2pre1
author:
   Slava Pestov
version:
   $Id: Debug.java 7144 2006-09-29 09:13:27Z kpouer $


Field Summary
public static  booleanALTERNATIVE_DISPATCHER
     If true, an alternative dispatcher using key typed events will be used to handle a modifier key press in conjunction with an alphabet key.
public static  booleanALT_KEY_PRESSED_DISABLED
     If true, A+ shortcuts are disabled.
public static  booleanBEANSHELL_DEBUG
     Logs messages when BeanShell code is evaluated.
public static  booleanCHUNK_CACHE_DEBUG
     For checking invalidation, etc.
public static  booleanCHUNK_PAINT_DEBUG
     Paints boxes around chunks.
public static  booleanDISABLE_GLYPH_VECTOR
     Paint strings instead of glyph vectors.
public static  booleanDISABLE_MULTIHEAD
     Disable multihead support, since it can cause window positioning problems with some Java versions.
public static  booleanDISABLE_SEARCH_DIALOG_POOL
     Create new search dialogs instead of reusing instances.
public static  booleanDUMP_KEY_EVENTS
    
public static  booleanEB_TIMER
     Show time taken for each EBComponent.
public static  booleanFOLD_DEBUG
     For checking fold level invalidation, etc.
public static  booleanFOLD_VIS_DEBUG
     For checking the line visibility structure..
public static  booleanGEOMETRY_WORKAROUND
     Geometry workaround for X11.
public static  booleanGLOBAL_SHORTCUTS_FOR_DOCKED_DOCKABLES
     Old key handling (SIMPLIFIED_KEY_HANDLING==false) and new key handling (SIMPLIFIED_KEY_HANDLING==true) react on different key events.
public static  booleanINDENT_DEBUG
     Indent debug.
public static  booleanOFFSET_DEBUG
     Print messages when the gap moves, and other offset manager state changes.
public static  booleanPAINT_TIMER
     Show time taken to repaint text area painter.
public static  booleanPRINT_DEBUG
     Printing debug.
public static  booleanSCREEN_LINES_DEBUG
     Print messages when screen line counts change.
public static  booleanSCROLL_DEBUG
     Print messages when text area and display manager perform scroll updates.
public static  booleanSCROLL_TO_DEBUG
     Print messages when text area tries to make the caret visible.
public static  booleanSCROLL_VERIFY
     Display an error if the scrolling code detects an inconsistency.
public static  booleanTOKEN_MARKER_DEBUG
     For checking context, etc.



Field Detail
ALTERNATIVE_DISPATCHER
public static boolean ALTERNATIVE_DISPATCHER(Code)
If true, an alternative dispatcher using key typed events will be used to handle a modifier key press in conjunction with an alphabet key. On by default on MacOS.



ALT_KEY_PRESSED_DISABLED
public static boolean ALT_KEY_PRESSED_DISABLED(Code)
If true, A+ shortcuts are disabled. If you use this, you should also remap the the modifiers so that A+ is actually something else. On by default on MacOS.



BEANSHELL_DEBUG
public static boolean BEANSHELL_DEBUG(Code)
Logs messages when BeanShell code is evaluated.



CHUNK_CACHE_DEBUG
public static boolean CHUNK_CACHE_DEBUG(Code)
For checking invalidation, etc.



CHUNK_PAINT_DEBUG
public static boolean CHUNK_PAINT_DEBUG(Code)
Paints boxes around chunks.



DISABLE_GLYPH_VECTOR
public static boolean DISABLE_GLYPH_VECTOR(Code)
Paint strings instead of glyph vectors.



DISABLE_MULTIHEAD
public static boolean DISABLE_MULTIHEAD(Code)
Disable multihead support, since it can cause window positioning problems with some Java versions.
since:
   jEdit 4.3pre1



DISABLE_SEARCH_DIALOG_POOL
public static boolean DISABLE_SEARCH_DIALOG_POOL(Code)
Create new search dialogs instead of reusing instances.



DUMP_KEY_EVENTS
public static boolean DUMP_KEY_EVENTS(Code)
Dump key events received by text area?



EB_TIMER
public static boolean EB_TIMER(Code)
Show time taken for each EBComponent.



FOLD_DEBUG
public static boolean FOLD_DEBUG(Code)
For checking fold level invalidation, etc.



FOLD_VIS_DEBUG
public static boolean FOLD_VIS_DEBUG(Code)
For checking the line visibility structure..



GEOMETRY_WORKAROUND
public static boolean GEOMETRY_WORKAROUND(Code)
Geometry workaround for X11.



GLOBAL_SHORTCUTS_FOR_DOCKED_DOCKABLES
public static boolean GLOBAL_SHORTCUTS_FOR_DOCKED_DOCKABLES(Code)
Old key handling (SIMPLIFIED_KEY_HANDLING==false) and new key handling (SIMPLIFIED_KEY_HANDLING==true) react on different key events. Old key handling primarily reacts on "key pressed" events, while new key handling primarily reacts on "key typed" events. The feature of enabled shortcuts when dockables are docked and have focus was only implemented for the case of reaction on "key pressed" evets. This switch enables such handling for "key typed" events, too. With this switch on, global shortcuts for docked dockables also work with the new key handling. See also: jEdit bug 1493185 ( https://sourceforge.net/tracker/?func=detail&aid=1493185&group_id=588&atid=100588 ).



INDENT_DEBUG
public static boolean INDENT_DEBUG(Code)
Indent debug.



OFFSET_DEBUG
public static boolean OFFSET_DEBUG(Code)
Print messages when the gap moves, and other offset manager state changes.



PAINT_TIMER
public static boolean PAINT_TIMER(Code)
Show time taken to repaint text area painter.



PRINT_DEBUG
public static boolean PRINT_DEBUG(Code)
Printing debug.



SCREEN_LINES_DEBUG
public static boolean SCREEN_LINES_DEBUG(Code)
Print messages when screen line counts change.



SCROLL_DEBUG
public static boolean SCROLL_DEBUG(Code)
Print messages when text area and display manager perform scroll updates.



SCROLL_TO_DEBUG
public static boolean SCROLL_TO_DEBUG(Code)
Print messages when text area tries to make the caret visible.



SCROLL_VERIFY
public static boolean SCROLL_VERIFY(Code)
Display an error if the scrolling code detects an inconsistency. This kills performance!



TOKEN_MARKER_DEBUG
public static boolean TOKEN_MARKER_DEBUG(Code)
For checking context, etc.





Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.