@@ -16,8 +16,9 @@ package com.facebook.react.viewmanagers;
16
16
import android .view .View ;
17
17
import androidx .annotation .Nullable ;
18
18
import com .facebook .react .bridge .ReadableArray ;
19
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
19
20
20
- public interface ArrayPropsNativeComponentViewManagerInterface <T extends View > {
21
+ public interface ArrayPropsNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
21
22
void setNames(T view , @Nullable ReadableArray value );
22
23
void setDisableds(T view , @Nullable ReadableArray value );
23
24
void setProgress(T view , @Nullable ReadableArray value );
@@ -50,8 +51,9 @@ package com.facebook.react.viewmanagers;
50
51
51
52
import android .view .View ;
52
53
import androidx .annotation .Nullable ;
54
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
53
55
54
- public interface BooleanPropNativeComponentViewManagerInterface <T extends View > {
56
+ public interface BooleanPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
55
57
void setDisabled(T view , boolean value );
56
58
void setDisabledNullable(T view , @Nullable Boolean value );
57
59
}
@@ -74,8 +76,9 @@ package com.facebook.react.viewmanagers;
74
76
75
77
import android .view .View ;
76
78
import androidx .annotation .Nullable ;
79
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
77
80
78
- public interface ColorPropNativeComponentViewManagerInterface <T extends View > {
81
+ public interface ColorPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
79
82
void setTintColor(T view , @Nullable Integer value );
80
83
}
81
84
" ,
@@ -97,9 +100,10 @@ package com.facebook.react.viewmanagers;
97
100
98
101
import android .view .View ;
99
102
import androidx .annotation .Nullable ;
103
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
100
104
import com .facebook .yoga .YogaValue ;
101
105
102
- public interface DimensionPropNativeComponentViewManagerInterface <T extends View > {
106
+ public interface DimensionPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
103
107
void setMarginBack(T view , @Nullable YogaValue value );
104
108
}
105
109
" ,
@@ -120,8 +124,9 @@ Object {
120
124
package com .facebook .react .viewmanagers ;
121
125
122
126
import android .view .View ;
127
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
123
128
124
- public interface EdgeInsetsPropNativeComponentViewManagerInterface <T extends View > {
129
+ public interface EdgeInsetsPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
125
130
// No props
126
131
}
127
132
" ,
@@ -143,8 +148,9 @@ package com.facebook.react.viewmanagers;
143
148
144
149
import android .view .View ;
145
150
import androidx .annotation .Nullable ;
151
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
146
152
147
- public interface EnumPropNativeComponentViewManagerInterface <T extends View > {
153
+ public interface EnumPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
148
154
void setAlignment(T view , @Nullable String value );
149
155
void setIntervals(T view , @Nullable Integer value );
150
156
}
@@ -166,8 +172,9 @@ Object {
166
172
package com .facebook .react .viewmanagers ;
167
173
168
174
import android .view .View ;
175
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
169
176
170
- public interface EventNestedObjectPropsNativeComponentViewManagerInterface <T extends View > {
177
+ public interface EventNestedObjectPropsNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
171
178
void setDisabled(T view , boolean value );
172
179
}
173
180
" ,
@@ -188,8 +195,9 @@ Object {
188
195
package com .facebook .react .viewmanagers ;
189
196
190
197
import android .view .View ;
198
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
191
199
192
- public interface EventPropsNativeComponentViewManagerInterface <T extends View > {
200
+ public interface EventPropsNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
193
201
void setDisabled(T view , boolean value );
194
202
}
195
203
" ,
@@ -211,8 +219,9 @@ package com.facebook.react.viewmanagers;
211
219
212
220
import android .view .View ;
213
221
import androidx .annotation .Nullable ;
222
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
214
223
215
- public interface FloatPropsNativeComponentViewManagerInterface <T extends View > {
224
+ public interface FloatPropsNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
216
225
void setBlurRadius(T view , float value );
217
226
void setBlurRadius2(T view , float value );
218
227
void setBlurRadius3(T view , float value );
@@ -241,8 +250,9 @@ package com.facebook.react.viewmanagers;
241
250
import android .view .View ;
242
251
import androidx .annotation .Nullable ;
243
252
import com .facebook .react .bridge .ReadableMap ;
253
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
244
254
245
- public interface ImagePropNativeComponentViewManagerInterface <T extends View > {
255
+ public interface ImagePropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
246
256
void setThumbImage(T view , @Nullable ReadableMap value );
247
257
}
248
258
" ,
@@ -263,8 +273,9 @@ Object {
263
273
package com .facebook .react .viewmanagers ;
264
274
265
275
import android .view .View ;
276
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
266
277
267
- public interface IntegerPropNativeComponentViewManagerInterface <T extends View > {
278
+ public interface IntegerPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
268
279
void setProgress1(T view , int value );
269
280
void setProgress2(T view , int value );
270
281
void setProgress3(T view , int value );
@@ -288,8 +299,9 @@ package com.facebook.react.viewmanagers;
288
299
289
300
import android .view .View ;
290
301
import androidx .annotation .Nullable ;
302
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
291
303
292
- public interface InterfaceOnlyNativeComponentViewManagerInterface <T extends View > {
304
+ public interface InterfaceOnlyNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
293
305
void setTitle(T view , @Nullable String value );
294
306
}
295
307
" ,
@@ -311,8 +323,9 @@ package com.facebook.react.viewmanagers;
311
323
312
324
import android .view .View ;
313
325
import com .facebook .react .bridge .Dynamic ;
326
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
314
327
315
- public interface MixedPropNativeComponentViewManagerInterface <T extends View > {
328
+ public interface MixedPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
316
329
void setMixedProp(T view , Dynamic value );
317
330
}
318
331
" ,
@@ -335,8 +348,9 @@ package com.facebook.react.viewmanagers;
335
348
import android .view .View ;
336
349
import androidx .annotation .Nullable ;
337
350
import com .facebook .react .bridge .ReadableMap ;
351
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
338
352
339
- public interface MultiNativePropNativeComponentViewManagerInterface <T extends View > {
353
+ public interface MultiNativePropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
340
354
void setThumbImage(T view , @Nullable ReadableMap value );
341
355
void setColor(T view , @Nullable Integer value );
342
356
void setThumbTintColor(T view , @Nullable Integer value );
@@ -360,8 +374,9 @@ Object {
360
374
package com .facebook .react .viewmanagers ;
361
375
362
376
import android .view .View ;
377
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
363
378
364
- public interface NoPropsNoEventsNativeComponentViewManagerInterface <T extends View > {
379
+ public interface NoPropsNoEventsNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
365
380
// No props
366
381
}
367
382
" ,
@@ -384,8 +399,9 @@ package com.facebook.react.viewmanagers;
384
399
import android .view .View ;
385
400
import androidx .annotation .Nullable ;
386
401
import com .facebook .react .bridge .ReadableMap ;
402
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
387
403
388
- public interface ObjectPropsNativeComponentManagerInterface <T extends View > {
404
+ public interface ObjectPropsNativeComponentManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
389
405
void setObjectProp(T view , @Nullable ReadableMap value );
390
406
void setObjectArrayProp(T view , @Nullable ReadableMap value );
391
407
void setObjectPrimitiveRequiredProp(T view , @Nullable ReadableMap value );
@@ -410,8 +426,9 @@ package com.facebook.react.viewmanagers;
410
426
import android .view .View ;
411
427
import androidx .annotation .Nullable ;
412
428
import com .facebook .react .bridge .ReadableMap ;
429
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
413
430
414
- public interface PointPropNativeComponentViewManagerInterface <T extends View > {
431
+ public interface PointPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
415
432
void setStartPoint(T view , @Nullable ReadableMap value );
416
433
}
417
434
" ,
@@ -433,8 +450,9 @@ package com.facebook.react.viewmanagers;
433
450
434
451
import android .view .View ;
435
452
import androidx .annotation .Nullable ;
453
+ import com .facebook .react .uimanager .ViewManagerWithGeneratedInterface ;
436
454
437
- public interface StringPropNativeComponentViewManagerInterface <T extends View > {
455
+ public interface StringPropNativeComponentViewManagerInterface <T extends View > extends ViewManagerWithGeneratedInterface {
438
456
void setPlaceholder(T view , @Nullable String value );
439
457
void setDefaultValue(T view , @Nullable String value );
440
458
}
0 commit comments