Package ro.redeul.google.go.inspection.fix

Examples of ro.redeul.google.go.inspection.fix.RepackageFileFix


        if (srcRoot != null && srcRoot.equals(virtualFile.getParent())) {
            result.addProblem(packageDeclaration,
                              "File should be inside a folder named '" + packageName + "'",
                              ProblemHighlightType.GENERIC_ERROR,
                              new RepackageFileFix(srcRoot, packageName));
            return;
        }

        String targetPackageName = virtualFile.getParent().getName();
        // We are only interested in the package name without any "."
View Full Code Here

TOP

Related Classes of ro.redeul.google.go.inspection.fix.RepackageFileFix

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.