forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reviewed By: achen1 Differential Revision: D4050949 fbshipit-source-id: 214838c1c1cf6c66170b606ac7055e1e8790b6c9
- Loading branch information
1 parent
6ca6b49
commit 1052d29
Showing
4 changed files
with
52 additions
and
5 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
ReactAndroid/src/main/java/com/facebook/react/views/art/ARTGroupViewManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright 2004-present Facebook. All Rights Reserved. | ||
|
||
package com.facebook.react.views.art; | ||
|
||
import com.facebook.react.module.annotations.ReactModule; | ||
|
||
/** | ||
* ViewManager for shadowed ART group views. | ||
*/ | ||
@ReactModule(name = ARTRenderableViewManager.CLASS_GROUP) | ||
public class ARTGroupViewManager extends ARTRenderableViewManager { | ||
|
||
/* package */ ARTGroupViewManager() { | ||
super(CLASS_GROUP); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
ReactAndroid/src/main/java/com/facebook/react/views/art/ARTShapeViewManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright 2004-present Facebook. All Rights Reserved. | ||
|
||
package com.facebook.react.views.art; | ||
|
||
import com.facebook.react.module.annotations.ReactModule; | ||
|
||
/** | ||
* ViewManager for shadowed ART shape views. | ||
*/ | ||
@ReactModule(name = ARTRenderableViewManager.CLASS_SHAPE) | ||
public class ARTShapeViewManager extends ARTRenderableViewManager { | ||
|
||
/* package */ ARTShapeViewManager() { | ||
super(CLASS_SHAPE); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
ReactAndroid/src/main/java/com/facebook/react/views/art/ARTTextViewManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright 2004-present Facebook. All Rights Reserved. | ||
|
||
package com.facebook.react.views.art; | ||
|
||
import com.facebook.react.module.annotations.ReactModule; | ||
|
||
/** | ||
* ViewManager for shadowed ART text views. | ||
*/ | ||
@ReactModule(name = ARTRenderableViewManager.CLASS_TEXT) | ||
public class ARTTextViewManager extends ARTRenderableViewManager { | ||
|
||
/* package */ ARTTextViewManager() { | ||
super(CLASS_TEXT); | ||
} | ||
} |