-
public interface ViewManagerDelegate<T extends View>
This is an interface that must be implemented by classes that wish to take over the responsibility of setting properties of all views managed by the view manager and executing view commands.
-
-
Method Summary
Modifier and Type Method Description abstract void
setProperty(T view, String propName, @Nullable() Object value)
abstract void
receiveCommand(T view, String commandName, ReadableArray args)
-
-
Method Detail
-
setProperty
abstract void setProperty(T view, String propName, @Nullable() Object value)
-
receiveCommand
abstract void receiveCommand(T view, String commandName, ReadableArray args)
-
-
-
-