Home | History | Annotate | Download | only in ant

Lines Matching refs:properties

58      * Advanced version of the {@link LibraryProcessor} that provides the library properties
63 public abstract void processLibrary(String libRootPath, IPropertySource properties);
67 ProjectProperties properties = TaskHelper.getProperties(libRootPath);
69 processLibrary(libRootPath, properties);
97 public void processLibrary(String libRootPath, IPropertySource properties) {
116 public static List<File> sanitizePaths(File projectFolder, IPropertySource properties,
134 File outputFile = new File(projectFolder, getOutDir(properties));
169 * @param source an {@link IPropertySource} that can provide the project properties values.
171 public DependencyHelper(File projectFolder, IPropertySource properties, boolean verbose) {
173 mProperties = properties;
225 * project properties.
227 * @param properties a source of project properties.
229 private List<File> getDirectDependencies(File baseFolder, IPropertySource properties) {
236 String rootPath = properties.getProperty(propName);
300 private static String getOutDir(IPropertySource properties) {
301 String bin = properties.getProperty("out.dir");