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
@@ -170,7 +170,7 @@ module.exports = {
return Object.keys(components).forEach(componentName => {
const component = components[componentName];
const className = `${componentName}Interface`;
const className = `${componentName}ViewManagerInterface`;
const fileName = `${className}.java`;
const imports = getImports(component);