Package bndtools.editor.contents.PackageInfoDialog

Examples of bndtools.editor.contents.PackageInfoDialog.FileVersionTuple


                if (!result.containsKey(pkg.getName())) {
                    File pkgDir = new File(sourceDir, pkg.getName().replace('.', '/'));
                    if (pkgDir.isDirectory()) {
                        File pkgInfo = new File(pkgDir, PACKAGEINFO);
                        if (!pkgInfo.exists())
                            result.put(pkg.getName(), new FileVersionTuple(pkg.getName(), pkgDir));
                    }
                }
            }
        }
View Full Code Here

TOP

Related Classes of bndtools.editor.contents.PackageInfoDialog.FileVersionTuple

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.