Unnamed: 0
int64 0
305k
| body
stringlengths 7
52.9k
| name
stringlengths 1
185
|
|---|---|---|
9,800
|
void (boolean booleanProperty) { this.booleanProperty = booleanProperty; }
|
setBooleanProperty
|
9,801
|
void (String stringProperty) { this.stringProperty = stringProperty; }
|
setStringProperty
|
9,802
|
void (String[] args) { final GetterSetterWithoutAccessorsAnnotationTest test = new GetterSetterWithoutAccessorsAnnotationTest(); test.setStringProperty("") .setIntProperty(1) .setBooleanProperty(true) .setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,803
|
int () { return this.intProperty; }
|
intProperty
|
9,804
|
double () { return this.doubleProperty; }
|
doubleProperty
|
9,805
|
boolean () { return this.booleanProperty; }
|
booleanProperty
|
9,806
|
String () { return this.stringProperty; }
|
stringProperty
|
9,807
|
GetterSetterWithoutAccessorsAnnotationTest (int intProperty) { this.intProperty = intProperty; return this; }
|
intProperty
|
9,808
|
GetterSetterWithoutAccessorsAnnotationTest (double doubleProperty) { this.doubleProperty = doubleProperty; return this; }
|
doubleProperty
|
9,809
|
GetterSetterWithoutAccessorsAnnotationTest (boolean booleanProperty) { this.booleanProperty = booleanProperty; return this; }
|
booleanProperty
|
9,810
|
GetterSetterWithoutAccessorsAnnotationTest (String stringProperty) { this.stringProperty = stringProperty; return this; }
|
stringProperty
|
9,811
|
void (String[] args) { final GetterSetterFieldTest test = new GetterSetterFieldTest(); test.stringProperty(""); test.intProperty(1); test.booleanProperty(true); test.doubleProperty(0.0); System.out.println(test); }
|
main
|
9,812
|
int () { return this.intProperty; }
|
intProperty
|
9,813
|
double () { return this.doubleProperty; }
|
doubleProperty
|
9,814
|
boolean () { return this.booleanProperty; }
|
booleanProperty
|
9,815
|
String () { return this.stringProperty; }
|
stringProperty
|
9,816
|
GetterSetterFieldTest (int intProperty) { this.intProperty = intProperty; return this; }
|
intProperty
|
9,817
|
GetterSetterFieldTest (double doubleProperty) { this.doubleProperty = doubleProperty; return this; }
|
doubleProperty
|
9,818
|
GetterSetterFieldTest (boolean booleanProperty) { this.booleanProperty = booleanProperty; return this; }
|
booleanProperty
|
9,819
|
GetterSetterFieldTest (String stringProperty) { this.stringProperty = stringProperty; return this; }
|
stringProperty
|
9,820
|
void (String[] args) { final GetterSetterFieldAnnotationOverwriteTest test = new GetterSetterFieldAnnotationOverwriteTest(); test.setStringProperty(""); test.setIntProperty(1) test.setBooleanProperty(true) test.setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,821
|
int () { return this.intProperty; }
|
getIntProperty
|
9,822
|
double () { return this.doubleProperty; }
|
getDoubleProperty
|
9,823
|
boolean () { return this.booleanProperty; }
|
isBooleanProperty
|
9,824
|
String () { return this.stringProperty; }
|
getStringProperty
|
9,825
|
void (int intProperty) { this.intProperty = intProperty; }
|
setIntProperty
|
9,826
|
void (double doubleProperty) { this.doubleProperty = doubleProperty; }
|
setDoubleProperty
|
9,827
|
void (boolean booleanProperty) { this.booleanProperty = booleanProperty; }
|
setBooleanProperty
|
9,828
|
void (String stringProperty) { this.stringProperty = stringProperty; }
|
setStringProperty
|
9,829
|
void (String[] args) { final GetterSetterClassTest test = new GetterSetterClassTest(); test.stringProperty(""); test.intProperty(1); test.booleanProperty(true); test.doubleProperty(0.0); System.out.println(test); }
|
main
|
9,830
|
void (String[] args) { final GetterSetterClassAnnotationOverwriteTest test = new GetterSetterClassAnnotationOverwriteTest(); test.setStringProperty(""); test.setIntProperty(1) test.setBooleanProperty(true) test.setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,831
|
void (String[] args) { final GetterSetterWithoutAccessorsAnnotationTest test = new GetterSetterWithoutAccessorsAnnotationTest(); test.setStringProperty("") .setIntProperty(1) .setBooleanProperty(true) .setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,832
|
void (String[] args) { final GetterSetterFieldTest test = new GetterSetterFieldTest(); test.stringProperty(""); test.intProperty(1); test.booleanProperty(true); test.doubleProperty(0.0); System.out.println(test); }
|
main
|
9,833
|
void (String[] args) { final GetterSetterFieldAnnotationOverwriteTest test = new GetterSetterFieldAnnotationOverwriteTest(); test.setStringProperty(""); test.setIntProperty(1) test.setBooleanProperty(true) test.setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,834
|
void (String[] args) { final GetterSetterClassTest test = new GetterSetterClassTest(); test.setStringProperty("") .setIntProperty(1) .setBooleanProperty(true) .setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,835
|
int () { return this.intProperty; }
|
getIntProperty
|
9,836
|
double () { return this.doubleProperty; }
|
getDoubleProperty
|
9,837
|
boolean () { return this.booleanProperty; }
|
isBooleanProperty
|
9,838
|
String () { return this.stringProperty; }
|
getStringProperty
|
9,839
|
GetterSetterClassTest (int intProperty) { this.intProperty = intProperty; return this; }
|
setIntProperty
|
9,840
|
GetterSetterClassTest (double doubleProperty) { this.doubleProperty = doubleProperty; return this; }
|
setDoubleProperty
|
9,841
|
GetterSetterClassTest (boolean booleanProperty) { this.booleanProperty = booleanProperty; return this; }
|
setBooleanProperty
|
9,842
|
GetterSetterClassTest (String stringProperty) { this.stringProperty = stringProperty; return this; }
|
setStringProperty
|
9,843
|
void (String[] args) { final GetterSetterClassAnnotationOverwriteTest test = new GetterSetterClassAnnotationOverwriteTest(); test.setStringProperty(""); test.setIntProperty(1) test.setBooleanProperty(true) test.setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,844
|
int () { return this.intProperty; }
|
getIntProperty
|
9,845
|
double () { return this.doubleProperty; }
|
getDoubleProperty
|
9,846
|
boolean () { return this.booleanProperty; }
|
isBooleanProperty
|
9,847
|
String () { return this.stringProperty; }
|
getStringProperty
|
9,848
|
void (int intProperty) { this.intProperty = intProperty; }
|
setIntProperty
|
9,849
|
void (double doubleProperty) { this.doubleProperty = doubleProperty; }
|
setDoubleProperty
|
9,850
|
void (boolean booleanProperty) { this.booleanProperty = booleanProperty; }
|
setBooleanProperty
|
9,851
|
void (String stringProperty) { this.stringProperty = stringProperty; }
|
setStringProperty
|
9,852
|
void (String[] args) { final GetterSetterWithoutAccessorsAnnotationTest test = new GetterSetterWithoutAccessorsAnnotationTest(); test.setStringProperty("") .setIntProperty(1) .setBooleanProperty(true) .setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,853
|
int () { return this.intProperty; }
|
getIntProperty
|
9,854
|
double () { return this.doubleProperty; }
|
getDoubleProperty
|
9,855
|
boolean () { return this.booleanProperty; }
|
isBooleanProperty
|
9,856
|
String () { return this.stringProperty; }
|
getStringProperty
|
9,857
|
GetterSetterWithoutAccessorsAnnotationTest (int intProperty) { this.intProperty = intProperty; return this; }
|
setIntProperty
|
9,858
|
GetterSetterWithoutAccessorsAnnotationTest (double doubleProperty) { this.doubleProperty = doubleProperty; return this; }
|
setDoubleProperty
|
9,859
|
GetterSetterWithoutAccessorsAnnotationTest (boolean booleanProperty) { this.booleanProperty = booleanProperty; return this; }
|
setBooleanProperty
|
9,860
|
GetterSetterWithoutAccessorsAnnotationTest (String stringProperty) { this.stringProperty = stringProperty; return this; }
|
setStringProperty
|
9,861
|
void (String[] args) { final GetterSetterFieldTest test = new GetterSetterFieldTest(); test.setStringProperty("") .setIntProperty(1) .setBooleanProperty(true) .setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,862
|
int () { return this.intProperty; }
|
getIntProperty
|
9,863
|
double () { return this.doubleProperty; }
|
getDoubleProperty
|
9,864
|
boolean () { return this.booleanProperty; }
|
isBooleanProperty
|
9,865
|
String () { return this.stringProperty; }
|
getStringProperty
|
9,866
|
GetterSetterFieldTest (int intProperty) { this.intProperty = intProperty; return this; }
|
setIntProperty
|
9,867
|
GetterSetterFieldTest (double doubleProperty) { this.doubleProperty = doubleProperty; return this; }
|
setDoubleProperty
|
9,868
|
GetterSetterFieldTest (boolean booleanProperty) { this.booleanProperty = booleanProperty; return this; }
|
setBooleanProperty
|
9,869
|
GetterSetterFieldTest (String stringProperty) { this.stringProperty = stringProperty; return this; }
|
setStringProperty
|
9,870
|
void (String[] args) { final GetterSetterFieldAnnotationOverwriteTest test = new GetterSetterFieldAnnotationOverwriteTest(); test.setStringProperty(""); test.setIntProperty(1) test.setBooleanProperty(true) test.setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,871
|
int () { return this.intProperty; }
|
getIntProperty
|
9,872
|
double () { return this.doubleProperty; }
|
getDoubleProperty
|
9,873
|
boolean () { return this.booleanProperty; }
|
isBooleanProperty
|
9,874
|
String () { return this.stringProperty; }
|
getStringProperty
|
9,875
|
void (int intProperty) { this.intProperty = intProperty; }
|
setIntProperty
|
9,876
|
void (double doubleProperty) { this.doubleProperty = doubleProperty; }
|
setDoubleProperty
|
9,877
|
void (boolean booleanProperty) { this.booleanProperty = booleanProperty; }
|
setBooleanProperty
|
9,878
|
void (String stringProperty) { this.stringProperty = stringProperty; }
|
setStringProperty
|
9,879
|
void (String[] args) { final GetterSetterClassTest test = new GetterSetterClassTest(); test.setStringProperty("") .setIntProperty(1) .setBooleanProperty(true) .setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,880
|
void (String[] args) { final GetterSetterClassAnnotationOverwriteTest test = new GetterSetterClassAnnotationOverwriteTest(); test.setStringProperty(""); test.setIntProperty(1) test.setBooleanProperty(true) test.setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,881
|
void (String[] args) { final GetterSetterWithoutAccessorsAnnotationTest test = new GetterSetterWithoutAccessorsAnnotationTest(); test.setStringProperty("") .setIntProperty(1) .setBooleanProperty(true) .setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,882
|
void (String[] args) { final GetterSetterFieldTest test = new GetterSetterFieldTest(); test.setStringProperty("") .setIntProperty(1) .setBooleanProperty(true) .setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,883
|
void (String[] args) { final GetterSetterFieldAnnotationOverwriteTest test = new GetterSetterFieldAnnotationOverwriteTest(); test.setStringProperty(""); test.setIntProperty(1) test.setBooleanProperty(true) test.setDoubleProperty(0.0); System.out.println(test); }
|
main
|
9,884
|
void (final String test) { this.test = test; }
|
setTest
|
9,885
|
BuilderWithJavaBeansSpecCapitalization () { java.util.List<String> a; switch (this.a == null ? 0 : this.a.size()) { case 0: a = java.util.Collections.emptyList(); break; case 1: a = java.util.Collections.singletonList(this.a.get(0)); break; default: a = java.util.Collections.unmodifiableList(new java.util.ArrayList<String>(this.a)); } java.util.List<String> aField; switch (this.aField == null ? 0 : this.aField.size()) { case 0: aField = java.util.Collections.emptyList(); break; case 1: aField = java.util.Collections.singletonList(this.aField.get(0)); break; default: aField = java.util.Collections.unmodifiableList(new java.util.ArrayList<String>(this.aField)); } return new BuilderWithJavaBeansSpecCapitalization(a, aField, this.bField); }
|
build
|
9,886
|
int () { return this.a; }
|
getA
|
9,887
|
int () { return this.aField; }
|
getaField
|
9,888
|
WithWithJavaBeansSpecCapitalization (final int aField) { return this.aField == aField ? this : new WithWithJavaBeansSpecCapitalization(aField); }
|
withaField
|
9,889
|
int () { return this.aField; }
|
getaField
|
9,890
|
boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof ValueWithJavaBeansSpecCapitalization)) return false; final ValueWithJavaBeansSpecCapitalization other = (ValueWithJavaBeansSpecCapitalization) o; if (this.getaField() != other.getaField()) return false; return true; }
|
equals
|
9,891
|
int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getaField(); return result; }
|
hashCode
|
9,892
|
void (final int a) { this.a = a; }
|
setA
|
9,893
|
void (final int aField) { this.aField = aField; }
|
setaField
|
9,894
|
B (final int field) { this.field = field; return self(); }
|
field
|
9,895
|
B (final int otherField) { this.otherField = otherField; return self(); }
|
otherField
|
9,896
|
B (final String item) { if (this.items == null) this.items = new java.util.ArrayList<String>(); this.items.add(item); return self(); }
|
item
|
9,897
|
B (final java.util.Collection<? extends String> items) { if (items == null) { throw new java.lang.NullPointerException("items cannot be null"); } if (this.items == null) this.items = new java.util.ArrayList<String>(); this.items.addAll(items); return self(); }
|
items
|
9,898
|
B () { if (this.items != null) this.items.clear(); return self(); }
|
clearItems
|
9,899
|
SuperBuilderWithPrefixes () { return new SuperBuilderWithPrefixes(this); }
|
build
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.