Java Doc for VerboseWriter.java in  » IDE-Eclipse » jdt » org » eclipse » jdi » internal » 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 » jdt » org.eclipse.jdi.internal 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.eclipse.jdi.internal.VerboseWriter

VerboseWriter
public class VerboseWriter (Code)


Field Summary
final public static  intVERBOSE_DESCRIPTION_LENGTH
     Length of verbose description.
final public static  intVERBOSE_HEX_BYTES_PER_LINE
     Number of hexadecimal verbose bytes per line.
final public static  intVERBOSE_HEX_WIDTH
     Width of hex dump.
 intfExtraVerboseLines
     Number extra verbose lines.

Constructor Summary
public  VerboseWriter(PrintWriter out)
     Creates new VerboseWriter that writes to the given PrintWriter.

Method Summary
public  voidflush()
     Flush buffer.
public  voidgotoPosition(int pos)
     Go to the given position in the buffer.
public  voidmarkLn()
     Terminate the current line by writing the line separator string, start at end of next line.
public  intposition()
    
public  voidprint(String str)
     Print a String.
public  voidprint(char c)
     Print a Character.
public  voidprint(char[] c)
     Print array of Characters.
public  voidprintDescription(String str)
     Prints description string with right size plus its seperator spaces.
public  voidprintHex(byte b)
     Prints hex representation of a byte.
public  voidprintHex(short s)
     Prints hex representation of an int.
public  voidprintHex(int integer)
     Prints hex representation of an int.
public  voidprintHex(long l)
     Prints hex representation of a long.
public  voidprintHex(boolean b)
     Prints hex representation of a long.
public  voidprintHex(char c)
     Prints hex representation of a long.
public  voidprintHex(double d)
     Prints hex representation of a long.
public  voidprintHex(float f)
     Prints hex representation of a long.
public  voidprintHex(String str)
     Prints hex representation of a String.
public  voidprintHex(byte[] bytes)
     Prints hex representation of a byte array. Note that this can span more than one line, but is considered to be part of one 'verbose line'.
public  voidprintHexSubstitution(String str)
     Prints hex substitution string with right size plus its seperator spaces.
public  voidprintLines(int lines)
     Prints given number of lines.
public  voidprintValue(int value, Map valueToString)
     Prints string representation of a value given a Map from values to strings.
public  voidprintValue(byte value, String[] bitNames)
     Prints string representation of a value given a Vector with the names of the bits.
public  voidprintValue(short value, String[] bitNames)
     Prints string representation of a value given a Vector with the names of the bits.
public  voidprintValue(int value, String[] bitNames)
     Prints string representation of a value given a Vector with the names of the bits.
public  voidprintWidth(String str, int width)
     Prints string with right size.
public  voidprintln()
     Terminate the current line by writing the line separator string.
public  voidprintln(String description, byte value)
     Prints verbose line.
public  voidprintln(String description, short value)
     Prints verbose line.
public  voidprintln(String description, int value)
     Prints verbose line.
public  voidprintln(String description, long value)
     Prints verbose line.
public  voidprintln(String description, byte value, Map valueToString)
     Prints verbose line.
public  voidprintln(String description, short value, Map valueToString)
     Prints verbose line.
public  voidprintln(String description, int value, Map valueToString)
     Prints verbose line.
public  voidprintln(String description, byte value, String[] bitNames)
     Prints verbose line.
public  voidprintln(String description, short value, String[] bitNames)
     Prints verbose line.
public  voidprintln(String description, int value, String[] bitNames)
     Prints verbose line.
public  voidprintln(String description, String value)
     Prints verbose line.
public  voidprintln(String description, boolean value)
     Prints verbose line.
public  voidprintln(String description, char value)
     Prints verbose line.
public  voidprintln(String description, double value)
     Prints verbose line.
public  voidprintln(String description, float value)
     Prints verbose line.
public  voidprintln(String description, byte[] value)
     Prints verbose line.
public  voidprintln(String str)
     Print a String and then terminate the line.

Field Detail
VERBOSE_DESCRIPTION_LENGTH
final public static int VERBOSE_DESCRIPTION_LENGTH(Code)
Length of verbose description.



VERBOSE_HEX_BYTES_PER_LINE
final public static int VERBOSE_HEX_BYTES_PER_LINE(Code)
Number of hexadecimal verbose bytes per line.



VERBOSE_HEX_WIDTH
final public static int VERBOSE_HEX_WIDTH(Code)
Width of hex dump.



fExtraVerboseLines
int fExtraVerboseLines(Code)
Number extra verbose lines. These are caused by hex dumps that span more than one line.




Constructor Detail
VerboseWriter
public VerboseWriter(PrintWriter out)(Code)
Creates new VerboseWriter that writes to the given PrintWriter. Output is buffered and previous entries in the buffer can be rewritten.




Method Detail
flush
public void flush()(Code)
Flush buffer. If autoflush is off, this method is synchronized on the PrintWriter given in the constructor.



gotoPosition
public void gotoPosition(int pos)(Code)
Go to the given position in the buffer. If the given position is smaller than the current position, subsequent print commands overwrite existing lines in the buffer. Else, new lines are added to the buffer.



markLn
public void markLn()(Code)
Terminate the current line by writing the line separator string, start at end of next line.



position
public int position()(Code)
Returns current position in buffer.



print
public void print(String str)(Code)
Print a String.



print
public void print(char c)(Code)
Print a Character.



print
public void print(char[] c)(Code)
Print array of Characters.



printDescription
public void printDescription(String str)(Code)
Prints description string with right size plus its seperator spaces.



printHex
public void printHex(byte b)(Code)
Prints hex representation of a byte.



printHex
public void printHex(short s)(Code)
Prints hex representation of an int.



printHex
public void printHex(int integer)(Code)
Prints hex representation of an int.



printHex
public void printHex(long l)(Code)
Prints hex representation of a long.



printHex
public void printHex(boolean b)(Code)
Prints hex representation of a long.



printHex
public void printHex(char c)(Code)
Prints hex representation of a long.



printHex
public void printHex(double d)(Code)
Prints hex representation of a long.



printHex
public void printHex(float f)(Code)
Prints hex representation of a long.



printHex
public void printHex(String str)(Code)
Prints hex representation of a String.



printHex
public void printHex(byte[] bytes)(Code)
Prints hex representation of a byte array. Note that this can span more than one line, but is considered to be part of one 'verbose line'. Therefore, a println after a printHex can result in more than one line being printed to the PrintWriter.



printHexSubstitution
public void printHexSubstitution(String str)(Code)
Prints hex substitution string with right size plus its seperator spaces.



printLines
public void printLines(int lines)(Code)
Prints given number of lines.



printValue
public void printValue(int value, Map valueToString)(Code)
Prints string representation of a value given a Map from values to strings.



printValue
public void printValue(byte value, String[] bitNames)(Code)
Prints string representation of a value given a Vector with the names of the bits.



printValue
public void printValue(short value, String[] bitNames)(Code)
Prints string representation of a value given a Vector with the names of the bits.



printValue
public void printValue(int value, String[] bitNames)(Code)
Prints string representation of a value given a Vector with the names of the bits.



printWidth
public void printWidth(String str, int width)(Code)
Prints string with right size.



println
public void println()(Code)
Terminate the current line by writing the line separator string. If autoflush is set and there are extra vebose lines caused by printHex, these lines are also printed.



println
public void println(String description, byte value)(Code)
Prints verbose line.



println
public void println(String description, short value)(Code)
Prints verbose line.



println
public void println(String description, int value)(Code)
Prints verbose line.



println
public void println(String description, long value)(Code)
Prints verbose line.



println
public void println(String description, byte value, Map valueToString)(Code)
Prints verbose line.



println
public void println(String description, short value, Map valueToString)(Code)
Prints verbose line.



println
public void println(String description, int value, Map valueToString)(Code)
Prints verbose line.



println
public void println(String description, byte value, String[] bitNames)(Code)
Prints verbose line.



println
public void println(String description, short value, String[] bitNames)(Code)
Prints verbose line.



println
public void println(String description, int value, String[] bitNames)(Code)
Prints verbose line.



println
public void println(String description, String value)(Code)
Prints verbose line.



println
public void println(String description, boolean value)(Code)
Prints verbose line.



println
public void println(String description, char value)(Code)
Prints verbose line.



println
public void println(String description, double value)(Code)
Prints verbose line.



println
public void println(String description, float value)(Code)
Prints verbose line.



println
public void println(String description, byte[] value)(Code)
Prints verbose line.



println
public void println(String str)(Code)
Print a String and then terminate the line.



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.