Package net.sourceforge.jarbundler

Examples of net.sourceforge.jarbundler.DocumentType


    // Copy document type icons, if any, to the resource dir
    try {
      Iterator itor = bundleProperties.getDocumentTypes().iterator();

      while (itor.hasNext()) {
        DocumentType documentType = (DocumentType) itor.next();
        File iconFile = documentType.getIconFile();
        if (iconFile != null) {
          File dest = new File(mResourcesDir, iconFile.getName());
          if(mVerbose)
            log("Copying document icon file to \"" + bundlePath(dest) + "\"");
          mFileUtils.copyFile(iconFile, dest);
View Full Code Here

TOP

Related Classes of net.sourceforge.jarbundler.DocumentType

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.