org.apache.bcel.util

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 » Scripting » bcel » org.apache.bcel.util 
org.apache.bcel.util

This package contains utility classes for the Byte Code Engineering Library, namely:

  • Collection classes for JavaClass objects
  • A converter for class files to HTML
  • A tool to find instructions patterns via regular expressions
  • A class to find classes as defined in the CLASSPATH
  • A class loader that allows to create classes at run time

Java Source File NameTypeComment
AttributeHTML.javaClass Convert found attributes into HTML file.
version:
   $Id: AttributeHTML.java 386056 2006-03-15 11:31:56Z tcurdt $
author:
   M.
BCELComparator.javaInterface Used for BCEL comparison strategy
author:
   M.
BCELFactory.javaClass Factory creates il.append() statements, and sets instruction targets. A helper class for BCELifier.
See Also:   BCELifier
version:
   $Id: BCELFactory.java 410087 2006-05-29 12:12:19Z tcurdt $
author:
   M.
BCELifier.javaClass This class takes a given JavaClass object and converts it to a Java program that creates that very class using BCEL.
ByteSequence.javaClass Utility class that implements a sequence of bytes which can be read via the `readByte()' method.
Class2HTML.javaClass Read class file(s) and convert them into HTML files. Given a JavaClass object "class" that is in package "package" five files will be created in the specified directory.
  1. "package"."class".html as the main file which defines the frames for the following subfiles.
  2. "package"."class"_attributes.html contains all (known) attributes found in the file
  3. "package"."class"_cp.html contains the constant pool
  4. "package"."class"_code.html contains the byte code
  5. "package"."class"_methods.html contains references to all methods and fields of the class
All subfiles reference each other appropiately, e.g.
ClassLoader.javaClass

Drop in replacement for the standard class loader of the JVM.

ClassLoaderRepository.javaClass The repository maintains information about which classes have been loaded. It loads its data from the ClassLoader implementation passed into its constructor.
See Also:   org.apache.bcel.Repository
version:
   $Id: ClassLoaderRepository.java 386056 2006-03-15 11:31:56Z tcurdt $
author:
   M.
ClassPath.javaClass Responsible for loading (class) files from the CLASSPATH.
ClassQueue.javaClass Utility class implementing a (typesafe) queue of JavaClass objects.
version:
   $Id: ClassQueue.java 386056 2006-03-15 11:31:56Z tcurdt $
author:
   M.
ClassSet.javaClass Utility class implementing a (typesafe) set of JavaClass objects. Since JavaClass has no equals() method, the name of the class is used for comparison.
version:
   $Id: ClassSet.java 386056 2006-03-15 11:31:56Z tcurdt $
author:
   M.
ClassStack.javaClass Utility class implementing a (typesafe) stack of JavaClass objects.
version:
   $Id: ClassStack.java 386056 2006-03-15 11:31:56Z tcurdt $
author:
   M.
ClassVector.javaClass Utility class implementing a (typesafe) collection of JavaClass objects.
CodeHTML.javaClass Convert code into HTML file.
version:
   $Id: CodeHTML.java 386056 2006-03-15 11:31:56Z tcurdt $
author:
   M.
ConstantHTML.javaClass Convert constant pool into HTML file.
version:
   $Id: ConstantHTML.java 386056 2006-03-15 11:31:56Z tcurdt $
author:
   M.
InstructionFinder.javaClass InstructionFinder is a tool to search for given instructions patterns, i.e., match sequences of instructions in an instruction list via regular expressions.
JavaWrapper.javaClass Java interpreter replacement, i.e., wrapper that uses its own ClassLoader to modify/generate classes as they're requested.
MethodHTML.javaClass Convert methods and fields into HTML file.
version:
   $Id: MethodHTML.java 386056 2006-03-15 11:31:56Z tcurdt $
author:
   M.
Repository.javaInterface Abstract definition of a class repository.
SyntheticRepository.javaClass This repository is used in situations where a Class is created outside the realm of a ClassLoader.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.