Update java prop file names to include ViewManager

Summary:
Changes the java props class and file names to include "ViewManager" as in:
- ExampleViewManagerInterface
- ExampleViewManagerDelegate

Reviewed By: JoshuaGross, makovkastar

Differential Revision: D16418965

fbshipit-source-id: f8b2f8fe4145c0ada9dc7c5234fcc41935783374
This commit is contained in:
Rick Hanlon
2019-07-24 10:36:24 -07:00
committed by Facebook Github Bot
parent ac21f04532
commit e9af5726c5
18 changed files with 178 additions and 170 deletions
@@ -1,11 +1,11 @@
package com.facebook.react.uimanager;
import android.view.ViewGroup;
import com.facebook.react.viewmanagers.IntegerPropNativeComponentDelegate;
import com.facebook.react.viewmanagers.IntegerPropNativeComponentInterface;
import com.facebook.react.viewmanagers.IntegerPropNativeComponentViewManagerDelegate;
import com.facebook.react.viewmanagers.IntegerPropNativeComponentViewManagerInterface;
public class IntegerPropNativeComponentViewManager extends SimpleViewManager<ViewGroup>
implements IntegerPropNativeComponentInterface<ViewGroup> {
implements IntegerPropNativeComponentViewManagerInterface<ViewGroup> {
public static final String REACT_CLASS = "IntegerPropNativeComponentView";
@@ -15,8 +15,8 @@ public class IntegerPropNativeComponentViewManager extends SimpleViewManager<Vie
}
private void test() {
IntegerPropNativeComponentDelegate delegate =
new IntegerPropNativeComponentDelegate<ViewGroup>();
IntegerPropNativeComponentViewManagerDelegate delegate =
new IntegerPropNativeComponentViewManagerDelegate<ViewGroup>();
}
@Override