Unnamed: 0
int64
0
305k
body
stringlengths
7
52.9k
name
stringlengths
1
185
58,600
void (String configurationName) { this.configurationName = configurationName; // have to differentiate(using different DefaultExternalDependencyId) project dependencies on different configurations if(!Dependency.DEFAULT_CONFIGURATION.equals(configurationName)){ setClassifier(configurationName); } }
setConfigurationName
58,601
Collection<File> () { return projectDependencyArtifacts; }
getProjectDependencyArtifacts
58,602
void (Collection<File> projectArtifacts) { projectDependencyArtifacts = projectArtifacts; }
setProjectDependencyArtifacts
58,603
Collection<File> () { return projectDependencyArtifactsSources; }
getProjectDependencyArtifactsSources
58,604
void (Collection<File> projectArtifactsSources) { projectDependencyArtifactsSources = projectArtifactsSources; }
setProjectDependencyArtifactsSources
58,605
boolean (Object o) { if (this == o) return true; if (!(o instanceof DefaultExternalProjectDependency)) return false; if (!super.equals(o)) return false; DefaultExternalProjectDependency that = (DefaultExternalProjectDependency)o; return Objects.equal(projectPath, that.projectPath) && Objects.equal(configurationName, th...
equals
58,606
int () { return Objects.hashCode(super.hashCode(), projectPath, configurationName); }
hashCode
58,607
String () { return "project dependency '" + projectPath + ", " + configurationName + '\'' ; }
toString
58,608
String () { return externalSystemId; }
getExternalSystemId
58,609
String () { return id; }
getId
58,610
void (@NotNull String id) { this.id = id; }
setId
58,611
String () { return path; }
getPath
58,612
void (@NotNull String path) { this.path = path; }
setPath
58,613
String () { return identityPath; }
getIdentityPath
58,614
void (@NotNull String path) { this.identityPath = path; }
setIdentityPath
58,615
void (@NotNull String externalSystemId) { this.externalSystemId = externalSystemId; }
setExternalSystemId
58,616
String () { return name; }
getName
58,617
void (@NotNull String name) { this.name = name; }
setName
58,618
String () { return qName; }
getQName
58,619
void (@NotNull String QName) { qName = QName; }
setQName
58,620
String () { return description; }
getDescription
58,621
void (@Nullable String description) { this.description = description; }
setDescription
58,622
String () { return group; }
getGroup
58,623
void (@NotNull String group) { this.group = group; }
setGroup
58,624
String () { return version; }
getVersion
58,625
void (@NotNull String version) { this.version = version; }
setVersion
58,626
String () { return sourceSetModel.getSourceCompatibility(); }
getSourceCompatibility
58,627
void (@Nullable String sourceCompatibility) { sourceSetModel.setSourceCompatibility(sourceCompatibility); }
setSourceCompatibility
58,628
String () { return sourceSetModel.getTargetCompatibility(); }
getTargetCompatibility
58,629
void (@Nullable String targetCompatibility) { sourceSetModel.setTargetCompatibility(targetCompatibility); }
setTargetCompatibility
58,630
void (@NotNull Map<String, DefaultExternalProject> childProjects) { if (childProjects instanceof TreeMap) { this.childProjects = (TreeMap<String, DefaultExternalProject>)childProjects; } else { this.childProjects = new TreeMap<>(childProjects); } }
setChildProjects
58,631
File () { return projectDir; }
getProjectDir
58,632
void (@NotNull File projectDir) { this.projectDir = projectDir; }
setProjectDir
58,633
File () { return buildDir; }
getBuildDir
58,634
void (@NotNull File buildDir) { this.buildDir = buildDir; }
setBuildDir
58,635
File () { return buildFile; }
getBuildFile
58,636
void (@Nullable File buildFile) { this.buildFile = buildFile; }
setBuildFile
58,637
void (@NotNull Map<String, DefaultExternalTask> tasks) { this.tasks = tasks; }
setTasks
58,638
DefaultGradleSourceSetModel () { return sourceSetModel; }
getSourceSetModel
58,639
void (@NotNull DefaultGradleSourceSetModel sourceSetModel) { this.sourceSetModel = sourceSetModel; }
setSourceSetModel
58,640
void (@NotNull Map<String, DefaultExternalSourceSet> sourceSets) { sourceSetModel.setSourceSets(sourceSets); }
setSourceSets
58,641
List<File> () { return sourceSetModel.getTaskArtifacts(); }
getArtifacts
58,642
void (@NotNull List<File> artifacts) { sourceSetModel.setTaskArtifacts(artifacts); }
setArtifacts
58,643
void (@NotNull Map<String, Set<File>> artifactsByConfiguration) { sourceSetModel.setConfigurationArtifacts(artifactsByConfiguration); }
setArtifactsByConfiguration
58,644
String () { return "project '" + id + "'"; }
toString
58,645
Collection<File> () { return files; }
getFiles
58,646
void (@NotNull Collection<File> files) { this.files = new ArrayList<>(files); }
setFiles
58,647
boolean () { return excludedFromIndexing; }
isExcludedFromIndexing
58,648
void (boolean excludedFromIndexing) { this.excludedFromIndexing = excludedFromIndexing; }
setExcludedFromIndexing
58,649
boolean (Object o) { if (this == o) return true; if (!(o instanceof DefaultFileCollectionDependency)) return false; if (!super.equals(o)) return false; DefaultFileCollectionDependency that = (DefaultFileCollectionDependency)o; return GradleContainerUtil.match(files.iterator(), that.files.iterator(), new BooleanBiFuncti...
equals
58,650
Boolean (File o1, File o2) { return Objects.equal(o1.getPath(), o2.getPath()); }
fun
58,651
int () { return Objects.hashCode(super.hashCode(), calcFilesPathsHashCode(files)); }
hashCode
58,652
String () { return "file collection dependency{" + "files=" + files + '}'; }
toString
58,653
File () { return file; }
getFile
58,654
void (File file) { this.file = file; }
setFile
58,655
File () { return source; }
getSource
58,656
void (File source) { this.source = source; }
setSource
58,657
File () { return javadoc; }
getJavadoc
58,658
void (File javadoc) { this.javadoc = javadoc; }
setJavadoc
58,659
boolean (Object o) { if (this == o) return true; if (!(o instanceof DefaultExternalLibraryDependency)) return false; if (!super.equals(o)) return false; DefaultExternalLibraryDependency that = (DefaultExternalLibraryDependency)o; return Objects.equal(file.getPath(), that.file.getPath()); }
equals
58,660
int () { return Objects.hashCode(super.hashCode(), file.getPath()); }
hashCode
58,661
String () { return "library '" + file + '\''; }
toString
58,662
String () { return filterType; }
getFilterType
58,663
void (@NotNull String filterType) { this.filterType = filterType; }
setFilterType
58,664
String () { return propertiesAsJsonMap; }
getPropertiesAsJsonMap
58,665
void (@NotNull String propertiesAsJsonMap) { this.propertiesAsJsonMap = propertiesAsJsonMap; }
setPropertiesAsJsonMap
58,666
String () { return settings; }
getSettings
58,667
void (ExternalLibraryDependency dependency) { addIfNotNull(files, dependency.getFile()); addIfNotNull(sources, dependency.getSource()); addIfNotNull(javadocs, dependency.getJavadoc()); }
addArtifactsFrom
58,668
Collection<File> () { return files; }
getFiles
58,669
Collection<File> () { return sources; }
getSources
58,670
Collection<File> () { return javadocs; }
getJavadoc
58,671
boolean (Object o) { if (this == o) return true; if (!(o instanceof DefaultExternalMultiLibraryDependency)) return false; if (!super.equals(o)) return false; DefaultExternalMultiLibraryDependency that = (DefaultExternalMultiLibraryDependency)o; return GradleContainerUtil.match(files.iterator(), that.files.iterator(), n...
equals
58,672
Boolean (File o1, File o2) { return Objects.equal(o1.getPath(), o2.getPath()); }
fun
58,673
int () { return Objects.hashCode(super.hashCode(), calcFilesPathsHashCode(files)); }
hashCode
58,674
String () { return "library '" + files + '\'' + super.toString(); }
toString
58,675
String () { return name; }
getName
58,676
void (@NotNull String name) { this.name = name; }
setName
58,677
String () { return qName; }
getQName
58,678
void (@NotNull String QName) { qName = QName; }
setQName
58,679
String () { return description; }
getDescription
58,680
void (@Nullable String description) { this.description = description; }
setDescription
58,681
String () { return group; }
getGroup
58,682
void (@Nullable String group) { this.group = group; }
setGroup
58,683
String () { return type; }
getType
58,684
void (@Nullable String type) { this.type = type; }
setType
58,685
boolean () { return isTest; }
isTest
58,686
void (boolean test) { isTest = test; }
setTest
58,687
boolean () { return isJvmTest; }
isJvmTest
58,688
void (boolean test) { isJvmTest = test; }
setJvmTest
58,689
List<String> () { return sources; }
getSources
58,690
List<String> () { return classes; }
getClasses
58,691
String () { return name; }
getName
58,692
String () { return typeFqn; }
getTypeFqn
58,693
boolean (Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; DefaultGradleProperty property = (DefaultGradleProperty)o; if (!name.equals(property.name)) return false; if (!typeFqn.equals(property.typeFqn)) return false; return true; }
equals
58,694
int () { int result = name.hashCode(); result = 31 * result + typeFqn.hashCode(); return result; }
hashCode
58,695
List<ExternalTestSourceMapping> () { return Collections.unmodifiableList(sourceTestMappings); }
getTestSourceMappings
58,696
void (@NotNull List<ExternalTestSourceMapping> sourceTestMappings) { this.sourceTestMappings = sourceTestMappings; }
setSourceTestMappings
58,697
boolean (Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; DefaultExternalTestsModel model = (DefaultExternalTestsModel)o; if (!sourceTestMappings.equals(model.sourceTestMappings)) return false; return true; }
equals
58,698
int () { return sourceTestMappings.hashCode(); }
hashCode
58,699
Set<String> () { return unmodifiablePathSet(sourceFolders); }
getSourceFolders