Package javax.tools.diagnostics.image

Examples of javax.tools.diagnostics.image.ImageModule


       
        // iterate through the libraries
        while (null != iLibs && iLibs.hasNext()) {
          Object next = iLibs.next();
          if (next instanceof ImageModule) {
            ImageModule imageModule = (ImageModule)next;
            try {
              out.print("\t  " + imageModule.getName());
            } catch (CorruptDataException cde) {
              out.print("\t  " + Exceptions.getCorruptDataExceptionString());
            }
            out.print(", sections:\n");

            Iterator itSection = imageModule.getSections().iterator();
         
            // iterate through the library sections
            while (itSection.hasNext()) {
              next = itSection.next();
              if (next instanceof ImageSection) {
View Full Code Here

TOP

Related Classes of javax.tools.diagnostics.image.ImageModule

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.