1 19 20 package org.netbeans.lib.java.storagebuilder; 21 22 import java.io.File ; 23 import org.openide.modules.InstalledFileLocator; 24 25 public final class InstalledFileLocatorImpl extends InstalledFileLocator { 26 public File locate(String relativePath, String codeNameBase, boolean localized) { 27 return new File (System.getProperty("gjast.location")); 28 } 29 } 30 | Popular Tags |