Java 类org.gradle.api.provider.Property 实例源码

项目:jmh-gradle-plugin    文件:JMHPluginExtension.java   
Property<Boolean> getIncludeTestsProvider() {
    return includeTestState;
}
项目:gradle-site-plugin    文件:SitePluginExtension.java   
/**
 * Returns the website URL of the project linked in the generated web page.
 *
 * @return The website URL of the project property.
 */
public Property<String> getWebsiteUrl() {
    return websiteUrl;
}
项目:gradle-site-plugin    文件:SitePluginExtension.java   
/**
 * Returns the version control URL of the project linked in the generated web page.
 *
 * @return The version control URL of the project property.
 */
public Property<String> getVcsUrl() {
    return vcsUrl;
}
项目:gradle-site-plugin    文件:SiteGenerate.java   
/**
 * Returns the project descriptor containing the derived project information.
 *
 * @return The project descriptor.
 */
@Nested
public Property<ProjectDescriptor> getProjectDescriptor() {
    return projectDescriptor;
}