Package macromedia.asc.parser

Examples of macromedia.asc.parser.PackageDefinitionNode


        // (since it is based on the package name) and could overwrite an existing,
        // valid, signature file
        if ((sigString != null) && (signatureDirectory != null))
        {
            final ProgramNode           pNode    = (ProgramNode)unit.getSyntaxTree();
            final PackageDefinitionNode pdn      = pNode.pkgdefs.first();
            final String                pkgName  = NodeMagic.getPackageName(pdn).replace('.', '_');
            // final VirtualFile           vFile    = unit.getSource().getBackingFile();
           
            // this is only kinda sketchy, but it works... all I need is the file name, not the path
            final String fileName = new File(unit.getSource().getNameForReporting()).getName();
View Full Code Here

TOP

Related Classes of macromedia.asc.parser.PackageDefinitionNode

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.