Package workspace.elements

Examples of workspace.elements.HaxeLibProject


     * @param shortName
     * @return
     */
    public static HaxeType getStandartTypeByName(final String shortName)
    {
        HaxeLibProject lib =
                Activator.getProjectManager().getHaxeLib();
        return getStandartTypeByName(shortName, lib);
    }
View Full Code Here


        return null;
    }
   
    public static HaxeType getLibType(final String pack, final String shortName)
    {
        HaxeLibProject lib =
                Activator.getProjectManager().getHaxeLib();
       
        if (lib == null)
        {
            return null;
        }
        CodeFile file = lib.getFile(pack);
        if (file == null)
        {
            return null;
        }
        HaxeTree ast = file.getAst();
View Full Code Here

        }
    }
   
    private void updateLibProject()
    {
        libraries = new HaxeLibProject();
        libraries.linkLib();
    }
View Full Code Here

    public RefactoringStatus checkInitialConditions(IProgressMonitor pm)
            throws CoreException, OperationCanceledException
    {
        String pack = getTargetPackage();
        // check if file is from haxe lib
        HaxeLibProject project = Activator.getProjectManager().getHaxeLib();
        CodeFile file = project.getFile(pack);
        if (file != null)
        {
            return RefactoringStatus.createErrorStatus("Can't edit library file");
        }       
        // available for editing
View Full Code Here

TOP

Related Classes of workspace.elements.HaxeLibProject

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.