| java.lang.Object com.metaboss.util.AntUtils
AntUtils | public class AntUtils (Code) | | Toolbox for ant utils
|
Method Summary | |
public static boolean | equals(Path pPath1, Path pPath2) | public static String | getMandatoryEnvironmentProperty(String pPropertyName) | public static String | getMandatoryProjectOrEnvironmentProperty(Project pProject, String pProjectPropertyName, String pEnvironmentPropertyName) | public static String | getOptionalEnvironmentProperty(String pPropertyName, String pDefaultPropertyValue) | public static String | getOptionalProjectOrEnvironmentProperty(Project pProject, String pProjectPropertyName, String pEnvironmentPropertyName, String pDefaultPropertyValue) | public static String | getOptionalProjectProperty(Project pProject, String pProjectPropertyName, String pDefaultPropertyValue) | public static boolean | same(Path pPath1, Path pPath2) |
equals | public static boolean equals(Path pPath1, Path pPath2)(Code) | | Compares if two Path data types have exactly the same contents (same order and same content)
true if two path elements are equal |
getMandatoryEnvironmentProperty | public static String getMandatoryEnvironmentProperty(String pPropertyName) throws BuildException(Code) | | Returns the specified environment property or throws exception if none found
|
getMandatoryProjectOrEnvironmentProperty | public static String getMandatoryProjectOrEnvironmentProperty(Project pProject, String pProjectPropertyName, String pEnvironmentPropertyName) throws BuildException(Code) | | Returns the specified project property or, in its absence environment property or throws exception if none found
|
getOptionalEnvironmentProperty | public static String getOptionalEnvironmentProperty(String pPropertyName, String pDefaultPropertyValue) throws BuildException(Code) | | Returns the specified environment property or null if none found
|
getOptionalProjectOrEnvironmentProperty | public static String getOptionalProjectOrEnvironmentProperty(Project pProject, String pProjectPropertyName, String pEnvironmentPropertyName, String pDefaultPropertyValue) throws BuildException(Code) | | Returns the specified project property or, in its absence environment property or throws exception if none found
|
getOptionalProjectProperty | public static String getOptionalProjectProperty(Project pProject, String pProjectPropertyName, String pDefaultPropertyValue) throws BuildException(Code) | | Returns the specified project property or, in its absence environment property or throws exception if none found
|
same | public static boolean same(Path pPath1, Path pPath2)(Code) | | Compares if two Path data types have exactly the same contents, but not necessarily in the ame order
true if two path elements are the same |
|
|