blob: ca643ad1c8bdf5596df408daf60e8eb50c82d5f8 [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<HTML>
<BODY bgcolor="white">
The org.netbeans.modules.classfile package supports direct
access to a Java Virtual Machine classfile contents. All elements and
attributes of a classfile are accessible from this package's API. This
package only supports read-only access of classfiles at this time.
<P>
The classfile library is not actually a NetBeans module, but is only
packaged as one to use NetBeans' Auto Update facility. By being
packaged as a module, other (real) NetBeans modules may list it as
a dependency and require a minimum version to be present on the system.
The classfile library does not use any NetBeans API, only Java core API.
<P>
The classfile library has only four constructors, as the only objects that
can be created by a client are ClassFile objects (one constructor takes
an InputStream of classfile bytes, another takes a filename, and variants
of these two constructors allow creation of Code objects to be suppressed).
The ClassFile object is then queried for its elements. A ClassFile and
its elements should be considered immutable, even though it may be
possible to change one of its objects (if so, it's a bug).
<P>
<h2>Examples</h2>
Here is a simple example which dumps out a classfile:
<p>
<pre><code>
static void printClass(String classname) {
try {
System.out.println(new ClassFile(classname));
} catch (IOException e) {
System.out.println(e.toString());
e.printStackTrace();
}
}
</code></pre>
<p>
Here is an example which prints out any synthetic methods:
<pre><code>
static void printSyntheticMethods(InputStream in) throws IOException {
ClassFile cf = new ClassFile(in);
Iterator iter = cf.getMethods();
while (iter.hasNext()) {
Method m = (Method)iter.next();
if (m.isSynthetic())
System.out.println(m.toString());
}
}
</code></pre>
<h2>Related Documentation</h2>
<ul>
<li><A HREF="http://java.sun.com/docs/books/jls/index.html">Java Virtual Machine Specification, Second Edition</a>
</ul>
<!-- Put @see and @since tags down here. -->
</BODY>
</HTML>