Java Code Examples for org.gradle.api.file.RelativePath#parse()
The following examples show how to use
org.gradle.api.file.RelativePath#parse() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DefaultFileCopyDetails.java From pushfish-android with BSD 2-Clause "Simplified" License | 4 votes |
public void setPath(String path) { relativePath = RelativePath.parse(getRelativePath().isFile(), path); }
Example 2
Source File: DefaultFileCopyDetails.java From pushfish-android with BSD 2-Clause "Simplified" License | 4 votes |
public void setPath(String path) { relativePath = RelativePath.parse(getRelativePath().isFile(), path); }
Example 3
Source File: ClassFileTreeElement.java From DexKnifePlugin with Apache License 2.0 | 4 votes |
public void setClassPath(String name) { mFile = new File(name); mRelativePath = RelativePath.parse(!isDirectory(), name); }
Example 4
Source File: DefaultFileCopyDetails.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 4 votes |
public void setPath(String path) { relativePath = RelativePath.parse(getRelativePath().isFile(), path); }
Example 5
Source File: DefaultFileCopyDetails.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 4 votes |
public void setPath(String path) { relativePath = RelativePath.parse(getRelativePath().isFile(), path); }