comment_sentence_id
int64
1
5.52k
class
stringlengths
9
50
comment_sentence
stringlengths
1
1.32k
partition
int64
0
1
instance_type
int64
0
1
category
stringclasses
1 value
label
int64
0
1
combo
stringlengths
15
1.35k
__index_level_0__
int64
7.6k
16.5k
4,266
Binder.java
when the @link injector is created, it will automatically
0
0
Pointer
0
when the @link injector is created, it will automatically | Binder.java
9,198
4,268
Binder.java
serviceimpl is simply ignored.
0
0
Pointer
0
serviceimpl is simply ignored. | Binder.java
9,199
4,270
Binder.java
that you can t control.
0
0
Pointer
0
that you can t control. | Binder.java
9,200
4,271
Binder.java
pre
0
0
Pointer
0
pre | Binder.java
9,201
4,273
Binder.java
sets up a constant binding.
0
0
Pointer
0
sets up a constant binding. | Binder.java
9,202
4,274
Binder.java
constant injections must always be annotated.
0
0
Pointer
0
constant injections must always be annotated. | Binder.java
9,203
4,275
Binder.java
when a constant
0
0
Pointer
0
when a constant | Binder.java
9,204
4,276
Binder.java
binding s value is a string, it is eligible for conversion to all primitive types, to @link
0
0
Pointer
0
binding s value is a string, it is eligible for conversion to all primitive types, to @link | Binder.java
9,205
4,277
Binder.java
enum#valueof class, string all enums , and to @link class#forname class literals .
0
0
Pointer
0
enum#valueof class, string all enums , and to @link class#forname class literals . | Binder.java
9,206
4,278
Binder.java
conversions
0
0
Pointer
0
conversions | Binder.java
9,207
4,279
Binder.java
for other types can be configured using @link #converttotypes matcher, typeconverter
0
0
Pointer
0
for other types can be configured using @link #converttotypes matcher, typeconverter | Binder.java
9,208
4,280
Binder.java
converttotypes .
0
0
Pointer
0
converttotypes . | Binder.java
9,209
4,281
Binder.java
pre
0
0
Pointer
0
pre | Binder.java
9,210
4,282
Binder.java
@literal @ color red color red a member variable field
0
0
Pointer
0
@literal @ color red color red a member variable field | Binder.java
9,211
4,283
Binder.java
red mymodule^class.getdeclaredfield red ^getannotation color^class
0
0
Pointer
0
red mymodule^class.getdeclaredfield red ^getannotation color^class | Binder.java
9,212
4,285
Binder.java
if your binding annotation has parameters you can apply different bindings to different specific
0
0
Pointer
0
if your binding annotation has parameters you can apply different bindings to different specific | Binder.java
9,213
4,286
Binder.java
values of your annotation.
0
0
Pointer
0
values of your annotation. | Binder.java
9,214
4,287
Binder.java
getting your hands on the right instance of the annotation is a bit of
0
0
Pointer
0
getting your hands on the right instance of the annotation is a bit of | Binder.java
9,215
4,288
Binder.java
a pain one approach, shown above, is to apply a prototype annotation to a field in your module
0
0
Pointer
0
a pain one approach, shown above, is to apply a prototype annotation to a field in your module | Binder.java
9,216
4,290
Binder.java
pre
0
0
Pointer
0
pre | Binder.java
9,217
4,291
Binder.java
bind service^class
0
0
Pointer
0
bind service^class | Binder.java
9,218
4,292
Binder.java
annotatedwith names^named blue
0
0
Pointer
0
annotatedwith names^named blue | Binder.java
9,219
4,294
Binder.java
differentiating by names is a common enough use case that we provided a standard annotation,
0
0
Pointer
0
differentiating by names is a common enough use case that we provided a standard annotation, | Binder.java
9,220
4,295
Binder.java
@link com^google.inject^name.named @named .
0
0
Pointer
0
@link com^google.inject^name.named @named . | Binder.java
9,221
4,296
Binder.java
because of guice s library support, binding by name
0
0
Pointer
0
because of guice s library support, binding by name | Binder.java
9,222
4,297
Binder.java
is quite easier than in the arbitrary binding annotation case we just saw.
0
0
Pointer
0
is quite easier than in the arbitrary binding annotation case we just saw. | Binder.java
9,223
4,298
Binder.java
however, remember that
0
0
Pointer
0
however, remember that | Binder.java
9,224
4,299
Binder.java
these names will live in a single flat namespace with all the other names used in your
0
0
Pointer
0
these names will live in a single flat namespace with all the other names used in your | Binder.java
9,225
4,300
Binder.java
application.
0
0
Pointer
0
application. | Binder.java
9,226
4,301
Binder.java
pre
0
0
Pointer
0
pre | Binder.java
9,227
4,302
Binder.java
constructor t lonector getlonectorfromserviceimplviareflection
0
0
Pointer
0
constructor t lonector getlonectorfromserviceimplviareflection | Binder.java
9,228
4,303
Binder.java
bind serviceimpl^class
0
0
Pointer
0
bind serviceimpl^class | Binder.java
9,229
4,306
Binder.java
implementation.
0
0
Pointer
0
implementation. | Binder.java
9,230
4,307
Binder.java
it means that we do not need to place @literal @ inject on any of the
0
0
Pointer
0
it means that we do not need to place @literal @ inject on any of the | Binder.java
9,231
4,308
Binder.java
constructors and that guice treats the provided constructor as though it were annotated so.
0
0
Pointer
0
constructors and that guice treats the provided constructor as though it were annotated so. | Binder.java
9,232
4,309
Binder.java
it is
0
0
Pointer
0
it is | Binder.java
9,233
4,310
Binder.java
useful for cases where you cannot modify existing classes and is a bit simpler than using a
0
0
Pointer
0
useful for cases where you cannot modify existing classes and is a bit simpler than using a | Binder.java
9,234
4,311
Binder.java
@link provider .
0
0
Pointer
0
@link provider . | Binder.java
9,235
4,312
Binder.java
p the above list of examples is far from exhaustive.
0
0
Pointer
0
p the above list of examples is far from exhaustive. | Binder.java
9,236
4,313
Binder.java
if you can think of how the concepts of one
0
0
Pointer
0
if you can think of how the concepts of one | Binder.java
9,237
4,314
Binder.java
example might coexist with the concepts from another, you can most likely weave the two together.
0
0
Pointer
0
example might coexist with the concepts from another, you can most likely weave the two together. | Binder.java
9,238
4,315
Binder.java
if the two concepts make no sense with each other, you most likely won t be able to do it.
0
0
Pointer
0
if the two concepts make no sense with each other, you most likely won t be able to do it. | Binder.java
9,239
4,316
Binder.java
in a
0
0
Pointer
0
in a | Binder.java
9,240
4,318
Binder.java
runtime, as soon as you try to create your injector.
0
0
Pointer
0
runtime, as soon as you try to create your injector. | Binder.java
9,241
4,319
Binder.java
p the other methods of binder such as @link #bindscope , @link #bindinterceptor , @link
0
0
Pointer
0
p the other methods of binder such as @link #bindscope , @link #bindinterceptor , @link | Binder.java
9,242
4,320
Binder.java
#install , @link #requeststaticinjection , @link #adderror and @link #currentstage are not
0
0
Pointer
0
#install , @link #requeststaticinjection , @link #adderror and @link #currentstage are not | Binder.java
9,243
4,321
Binder.java
part of the binding edsl you can learn how to use these in the usual way, from the method
0
0
Pointer
0
part of the binding edsl you can learn how to use these in the usual way, from the method | Binder.java
9,244
4,322
Binder.java
documentation.
0
0
Pointer
0
documentation. | Binder.java
9,245
4,323
Binder.java
@author crazybob@google^com bob lee
0
0
Pointer
0
@author crazybob@google^com bob lee | Binder.java
9,246
4,324
Binder.java
@author jessewilson@google^com jesse wilson
0
0
Pointer
0
@author jessewilson@google^com jesse wilson | Binder.java
9,247
4,325
Binder.java
@author kevinb@google^com kevin bourrillion
0
0
Pointer
0
@author kevinb@google^com kevin bourrillion | Binder.java
9,248
5,124
VScrollTable.java
to detect if the first visible
0
0
Pointer
0
to detect if the first visible | VScrollTable.java
9,249
5,125
VScrollTable.java
these are used when jumping between pages when pressing home and end
1
0
Pointer
0
these are used when jumping between pages when pressing home and end | VScrollTable.java
9,250
5,126
VScrollTable.java
changes to manage mousedown and mouseup
0
0
Pointer
0
changes to manage mousedown and mouseup | VScrollTable.java
9,251
5,127
VScrollTable.java
overridden due table might not survive of visibility change scroll pos
1
0
Pointer
0
overridden due table might not survive of visibility change scroll pos | VScrollTable.java
9,252
5,128
VScrollTable.java
lost .
0
0
Pointer
0
lost . | VScrollTable.java
9,253
5,129
VScrollTable.java
example itabpanel just set contained components invisible and back
1
0
Pointer
0
example itabpanel just set contained components invisible and back | VScrollTable.java
9,254
5,130
VScrollTable.java
when changing tabs.
0
0
Pointer
0
when changing tabs. | VScrollTable.java
9,255
5,131
VScrollTable.java
updates first visible row for the case we cannot wait
1
0
Pointer
0
updates first visible row for the case we cannot wait | VScrollTable.java
9,256
5,132
VScrollTable.java
this method has logic which rows needs to be requested from server when
0
0
Pointer
0
this method has logic which rows needs to be requested from server when | VScrollTable.java
9,257
5,133
VScrollTable.java
user scrolls.
1
0
Pointer
0
user scrolls. | VScrollTable.java
9,258
5,144
VScrollTable.java
for internal use only.
0
0
Pointer
0
for internal use only. | VScrollTable.java
9,259
5,146
VScrollTable.java
overwrites onbrowserevent function on focusablescrollpanel to give event
1
0
Pointer
0
overwrites onbrowserevent function on focusablescrollpanel to give event | VScrollTable.java
9,260
5,147
VScrollTable.java
access to touchcontextprovider.
0
0
Pointer
0
access to touchcontextprovider. | VScrollTable.java
9,261
5,148
VScrollTable.java
has to be public to give tableconnector
1
0
Pointer
0
has to be public to give tableconnector | VScrollTable.java
9,262
5,150
VScrollTable.java
@since 72
0
0
Pointer
0
@since 72 | VScrollTable.java
9,263
5,151
VScrollTable.java
@author vaadin ltd
1
0
Pointer
0
@author vaadin ltd | VScrollTable.java
9,264
5,152
VScrollTable.java
to detect if the first visible
0
0
Pointer
0
to detect if the first visible | VScrollTable.java
9,265
5,153
VScrollTable.java
these are used when jumping between pages when pressing home and end
1
0
Pointer
0
these are used when jumping between pages when pressing home and end | VScrollTable.java
9,266
5,154
VScrollTable.java
changes to manage mousedown and mouseup
0
0
Pointer
0
changes to manage mousedown and mouseup | VScrollTable.java
9,267
5,155
VScrollTable.java
overridden due table might not survive of visibility change scroll pos
1
0
Pointer
0
overridden due table might not survive of visibility change scroll pos | VScrollTable.java
9,268
5,156
VScrollTable.java
lost .
0
0
Pointer
0
lost . | VScrollTable.java
9,269
5,157
VScrollTable.java
example itabpanel just set contained components invisible and back
1
0
Pointer
0
example itabpanel just set contained components invisible and back | VScrollTable.java
9,270
5,158
VScrollTable.java
when changing tabs.
0
0
Pointer
0
when changing tabs. | VScrollTable.java
9,271
5,159
VScrollTable.java
updates first visible row for the case we cannot wait
1
0
Pointer
0
updates first visible row for the case we cannot wait | VScrollTable.java
9,272
5,160
VScrollTable.java
this method has logic which rows needs to be requested from server when
0
0
Pointer
0
this method has logic which rows needs to be requested from server when | VScrollTable.java
9,273
5,161
VScrollTable.java
user scrolls.
1
0
Pointer
0
user scrolls. | VScrollTable.java
9,274
5,172
VScrollTable.java
used to recall the position of an open context menu if we need to close
0
0
Pointer
0
used to recall the position of an open context menu if we need to close | VScrollTable.java
9,275
5,175
VScrollTable.java
for internal use only.
1
0
Pointer
0
for internal use only. | VScrollTable.java
9,276
5,177
VScrollTable.java
to detect if the first visible
0
0
Pointer
0
to detect if the first visible | VScrollTable.java
9,277
5,178
VScrollTable.java
these are used when jumping between pages when pressing home and end
1
0
Pointer
0
these are used when jumping between pages when pressing home and end | VScrollTable.java
9,278
5,179
VScrollTable.java
changes to manage mousedown and mouseup
0
0
Pointer
0
changes to manage mousedown and mouseup | VScrollTable.java
9,279
5,180
VScrollTable.java
overridden due table might not survive of visibility change scroll pos
1
0
Pointer
0
overridden due table might not survive of visibility change scroll pos | VScrollTable.java
9,280
5,181
VScrollTable.java
lost .
0
0
Pointer
0
lost . | VScrollTable.java
9,281
5,182
VScrollTable.java
example itabpanel just set contained components invisible and back
1
0
Pointer
0
example itabpanel just set contained components invisible and back | VScrollTable.java
9,282
5,183
VScrollTable.java
when changing tabs.
0
0
Pointer
0
when changing tabs. | VScrollTable.java
9,283
5,184
VScrollTable.java
updates first visible row for the case we cannot wait
1
0
Pointer
0
updates first visible row for the case we cannot wait | VScrollTable.java
9,284
5,185
VScrollTable.java
this method has logic which rows needs to be requested from server when
0
0
Pointer
0
this method has logic which rows needs to be requested from server when | VScrollTable.java
9,285
5,186
VScrollTable.java
user scrolls.
1
0
Pointer
0
user scrolls. | VScrollTable.java
9,286
5,197
VScrollTable.java
for internal use only.
0
0
Pointer
0
for internal use only. | VScrollTable.java
9,287
5,199
VScrollTable.java
to detect if the first visible
1
0
Pointer
0
to detect if the first visible | VScrollTable.java
9,288
5,200
VScrollTable.java
these are used when jumping between pages when pressing home and end
0
0
Pointer
0
these are used when jumping between pages when pressing home and end | VScrollTable.java
9,289
5,201
VScrollTable.java
changes to manage mousedown and mouseup
1
0
Pointer
0
changes to manage mousedown and mouseup | VScrollTable.java
9,290
5,202
VScrollTable.java
overridden due table might not survive of visibility change scroll pos
0
0
Pointer
0
overridden due table might not survive of visibility change scroll pos | VScrollTable.java
9,291
5,203
VScrollTable.java
lost .
1
0
Pointer
0
lost . | VScrollTable.java
9,292
5,204
VScrollTable.java
example itabpanel just set contained components invisible and back
0
0
Pointer
0
example itabpanel just set contained components invisible and back | VScrollTable.java
9,293
5,205
VScrollTable.java
when changing tabs.
1
0
Pointer
0
when changing tabs. | VScrollTable.java
9,294
5,206
VScrollTable.java
updates first visible row for the case we cannot wait
0
0
Pointer
0
updates first visible row for the case we cannot wait | VScrollTable.java
9,295
5,207
VScrollTable.java
this method has logic which rows needs to be requested from server when
1
0
Pointer
0
this method has logic which rows needs to be requested from server when | VScrollTable.java
9,296
5,208
VScrollTable.java
user scrolls.
0
0
Pointer
0
user scrolls. | VScrollTable.java
9,297