Examples of FuelPhpModule


Examples of org.netbeans.modules.php.fuel.modules.FuelPhpModule

     * @param name
     * @return GoToItem object
     */
    public GoToItem create(FileObject fileObject, int offset, String name) {
        PhpModule phpModule = PhpModule.Factory.forFileObject(fileObject);
        FuelPhpModule fuelModule = FuelPhpModule.forPhpModule(phpModule);
        FuelPhpModule.FILE_TYPE fileType = fuelModule.getFileType(fileObject);
        if (offset < 0) {
            offset = 0;
        }

        switch (fileType) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.