Package com.sun.org.apache.bcel.internal.classfile

Examples of com.sun.org.apache.bcel.internal.classfile.ClassParser


     *                  represents the class that is being requested. That check
     *                  should be done by ClassFileLoader.
     */
    public BCELClassFile(InputStream is, String file_name) throws IOException {
        logger.entering(myClassName, "<init>(InputStream, String)", file_name); // NOI18N
        jc = new ClassParser(is, file_name).parse();
    }
View Full Code Here


    /**
     * @param file_path Absolute path to the .class file.
     */
    public BCELClassFile(String file_path) throws IOException {
        logger.entering(myClassName, "<init>(String)", file_path); // NOI18N
        jc = new ClassParser(file_path).parse();
    }
View Full Code Here

     *                  represents the class that is being requested. That check
     *                  should be done by ClassFileLoader.
     */
    public BCELClassFile(InputStream is, String file_name) throws IOException {
        logger.entering(myClassName, "<init>(InputStream, String)", file_name); // NOI18N
        jc = new ClassParser(is, file_name).parse();
    }
View Full Code Here

    /**
     * @param file_path Absolute path to the .class file.
     */
    public BCELClassFile(String file_path) throws IOException {
        logger.entering(myClassName, "<init>(String)", file_path); // NOI18N
        jc = new ClassParser(file_path).parse();
    }
View Full Code Here

        {              
            if( isClass( file ) )
            {
                try
                {
                    ClassParser parser = new ClassParser( zipFile, file );
                    JavaClass javaClass = parser.parse();
                   
                    if( javaClass.isPublic() )
                    {
                        classes.add( javaClass.getClassName() );
                    }                   
View Full Code Here

        {              
            if( isClass( file ) )
            {
                try
                {
                    ClassParser parser = new ClassParser( zipFile, file );
                    JavaClass javaClass = parser.parse();
                   
                    if( javaClass.isPublic() )
                    {
                        classes.add( javaClass.getClassName() );
                    }                   
View Full Code Here

TOP

Related Classes of com.sun.org.apache.bcel.internal.classfile.ClassParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.