Java Doc for Debug.java in  » Testing » KeY » de » uka » ilkd » key » util » 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 » Testing » KeY » de.uka.ilkd.key.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   de.uka.ilkd.key.util.Debug

Debug
final public class Debug (Code)


Field Summary
public static  booleanENABLE_ASSERTION
    
public static  booleanENABLE_DEBUG
    


Method Summary
final public static  voidassertFalse(boolean isNotOK)
    
final public static  voidassertFalse(boolean isNotOK, String message)
    
final public static  voidassertTrue(boolean isOK)
    
final public static  voidassertTrue(boolean isOK, String message)
    
final public static  voidassertTrue(boolean isOK, String message, Object parameter)
    
final public static  voidfail()
    
final public static  voidfail(String message)
    
final public static  voidfail(String message, Object o)
    
public static  voidout(String msg)
    
final public static  voidout(String msg, Object obj)
     prints given string and the result of calling the toString method of of the given obj if in debug mode.
final public static  voidout(String msg, Object obj1, Object obj2)
     prints given string and the result of calling the toString method of of the given objects if in debug mode.
final public static  voidout(String msg, Object obj1, Object obj2, Object obj3)
     prints given string and the result of calling the toString method of of the given objects if in debug mode.
final public static  voidout(String msg, long id)
     prints the given string followed by the int if in debug mode.
final public static  voidout(String msg, long id1, long id2)
     prints the given string followed by the int if in debug mode.
final public static  voidout(String msg, boolean b)
     prints the given string followed by the boolean if in debug mode.
final public static  voidout(Exception e)
    
final public static  voidoutIfEqual(String msg, boolean cond)
    
final public static  voidoutIfEqual(String msg, Object obj1, Object obj2)
    
final public static  voidprintStackTrace(Exception e)
    
final public static  voidprintStackTrace()
     Prints a stack trace (without influencing the execution in any way).
public static  StringstackTrace()
    

Field Detail
ENABLE_ASSERTION
public static boolean ENABLE_ASSERTION(Code)
has to be set in order to enable assertion



ENABLE_DEBUG
public static boolean ENABLE_DEBUG(Code)
has to be set in order to enable debugging





Method Detail
assertFalse
final public static void assertFalse(boolean isNotOK)(Code)



assertFalse
final public static void assertFalse(boolean isNotOK, String message)(Code)



assertTrue
final public static void assertTrue(boolean isOK)(Code)
an assertion failure is thrown if isOK is evaluated to false
Parameters:
  isOK - boolean the assertion that is checked



assertTrue
final public static void assertTrue(boolean isOK, String message)(Code)
an assertion failure is thrown if isOK is evaluated to false the text in message is handed over to this exception
Parameters:
  isOK - boolean the assertion that is checked
Parameters:
  message - String describes the failed assertion



assertTrue
final public static void assertTrue(boolean isOK, String message, Object parameter)(Code)
an assertion failure is thrown if isOK is evaluated to false the text in message is handed over to this exception
Parameters:
  isOK - boolean the assertion that is checked
Parameters:
  message - String describes the failed assertion



fail
final public static void fail()(Code)



fail
final public static void fail(String message)(Code)



fail
final public static void fail(String message, Object o)(Code)



out
public static void out(String msg)(Code)
prints given string if in debug mode
Parameters:
  msg - the String to be printed



out
final public static void out(String msg, Object obj)(Code)
prints given string and the result of calling the toString method of of the given obj if in debug mode. The advantage of calling the toString here and not before is that if debug mode is disabled no string computation is done
Parameters:
  msg - the String to be printed
Parameters:
  obj - the Object where to call the toString method



out
final public static void out(String msg, Object obj1, Object obj2)(Code)
prints given string and the result of calling the toString method of of the given objects if in debug mode. The advantage of calling the toString here and not before is that if debug mode is disabled no string computation is done
Parameters:
  msg - the String to be printed
Parameters:
  obj1 - the first Object where to call the toString method
Parameters:
  obj2 - the second Object where to call the toString method



out
final public static void out(String msg, Object obj1, Object obj2, Object obj3)(Code)
prints given string and the result of calling the toString method of of the given objects if in debug mode. The advantage of calling the toString here and not before is that if debug mode is disabled no string computation is done
Parameters:
  msg - the String to be printed
Parameters:
  obj1 - the first Object where to call the toString method
Parameters:
  obj2 - the second Object where to call the toString method
Parameters:
  obj3 - the third Object where to call the toString method



out
final public static void out(String msg, long id)(Code)
prints the given string followed by the int if in debug mode.
Parameters:
  msg - the String to be printed
Parameters:
  id - the int printed after msg



out
final public static void out(String msg, long id1, long id2)(Code)
prints the given string followed by the int if in debug mode.
Parameters:
  msg - the String to be printed
Parameters:
  id1 - the int printed first after msg
Parameters:
  id1 - the int printed second after msg



out
final public static void out(String msg, boolean b)(Code)
prints the given string followed by the boolean if in debug mode.
Parameters:
  msg - the String to be printed
Parameters:
  b - the boolean printed after msg



out
final public static void out(Exception e)(Code)
prints the stack trace if in debug mode
author:
   VK



outIfEqual
final public static void outIfEqual(String msg, boolean cond)(Code)
prints given string, if the condition cond is true
Parameters:
  msg - the String to be printed
Parameters:
  cond - the boolean deciding if the message is printed or not



outIfEqual
final public static void outIfEqual(String msg, Object obj1, Object obj2)(Code)
prints given string, if calling the equal method of obj1, with obj2 as argument results in true
Parameters:
  msg - the String to be printed
Parameters:
  obj1 - the Object where to call the equals method
Parameters:
  obj2 - the Object given to as parameter of the equals method of obj1



printStackTrace
final public static void printStackTrace(Exception e)(Code)
prints the stack trace of the given exception



printStackTrace
final public static void printStackTrace()(Code)
Prints a stack trace (without influencing the execution in any way).
author:
   VK



stackTrace
public static String stackTrace()(Code)



Methods inherited from java.lang.Object
protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public void notify() throws IllegalMonitorStateException(Code)(Java Doc)
final public void notifyAll() throws IllegalMonitorStateException(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final public void wait() throws IllegalMonitorStateException, InterruptedException(Code)(Java Doc)
final public void wait(long ms) throws IllegalMonitorStateException, InterruptedException(Code)(Java Doc)
final public void wait(long ms, int ns) throws IllegalMonitorStateException, 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.