mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-05 07:59:28 +00:00
[android] Remove outdated comments
This commit is contained in:
@@ -19,9 +19,6 @@ import com.facebook.react.bridge.Dynamic;
|
||||
import com.facebook.react.bridge.ReactContext;
|
||||
import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Circle view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class CircleView extends RenderableView {
|
||||
private String mCx;
|
||||
|
||||
@@ -17,9 +17,6 @@ import com.facebook.common.logging.FLog;
|
||||
import com.facebook.react.bridge.ReactContext;
|
||||
import com.facebook.react.common.ReactConstants;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual ClipPath view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class ClipPathView extends GroupView {
|
||||
|
||||
|
||||
@@ -16,9 +16,6 @@ import android.graphics.Path;
|
||||
|
||||
import com.facebook.react.bridge.ReactContext;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Definition type views
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class DefinitionView extends VirtualView {
|
||||
|
||||
|
||||
@@ -16,9 +16,6 @@ import android.view.View;
|
||||
|
||||
import com.facebook.react.bridge.ReactContext;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Defs view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class DefsView extends DefinitionView {
|
||||
|
||||
|
||||
@@ -19,9 +19,6 @@ import com.facebook.react.bridge.Dynamic;
|
||||
import com.facebook.react.bridge.ReactContext;
|
||||
import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Ellipse view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class EllipseView extends RenderableView {
|
||||
private String mCx;
|
||||
|
||||
@@ -26,9 +26,6 @@ import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Group view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class GroupView extends RenderableView {
|
||||
@Nullable ReadableMap mFont;
|
||||
|
||||
@@ -42,9 +42,6 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import javax.annotation.Nonnull;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Image view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class ImageView extends RenderableView {
|
||||
private String mX;
|
||||
|
||||
@@ -18,9 +18,6 @@ import com.facebook.react.bridge.Dynamic;
|
||||
import com.facebook.react.bridge.ReactContext;
|
||||
import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Line view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class LineView extends RenderableView {
|
||||
private String mX1;
|
||||
|
||||
@@ -23,9 +23,6 @@ import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual LinearGradient definition view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class LinearGradientView extends DefinitionView {
|
||||
|
||||
|
||||
@@ -21,9 +21,6 @@ import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Mask definition view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class MaskView extends GroupView {
|
||||
|
||||
|
||||
@@ -17,9 +17,6 @@ import android.graphics.Path;
|
||||
import com.facebook.react.bridge.ReactContext;
|
||||
import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Path view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class PathView extends RenderableView {
|
||||
private Path mPath;
|
||||
|
||||
@@ -24,9 +24,6 @@ import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Pattern definition view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class PatternView extends GroupView {
|
||||
|
||||
|
||||
@@ -23,9 +23,6 @@ import com.facebook.react.common.ReactConstants;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual RadialGradient definition view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class RadialGradientView extends DefinitionView {
|
||||
private String mFx;
|
||||
|
||||
@@ -19,9 +19,6 @@ import com.facebook.react.bridge.Dynamic;
|
||||
import com.facebook.react.bridge.ReactContext;
|
||||
import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Rect view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class RectView extends RenderableView {
|
||||
private String mX;
|
||||
|
||||
@@ -35,9 +35,6 @@ import static android.graphics.PathMeasure.POSITION_MATRIX_FLAG;
|
||||
import static android.graphics.PathMeasure.TANGENT_MATRIX_FLAG;
|
||||
import static com.horcrux.svg.TextProperties.*;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual TSpan view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class TSpanView extends TextView {
|
||||
private static final double tau = 2 * Math.PI;
|
||||
|
||||
@@ -22,9 +22,6 @@ import javax.annotation.Nullable;
|
||||
|
||||
import static com.horcrux.svg.TextProperties.*;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual TextPath view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class TextPathView extends TextView {
|
||||
|
||||
|
||||
@@ -26,10 +26,6 @@ import javax.annotation.Nullable;
|
||||
import static com.horcrux.svg.TextProperties.AlignmentBaseline;
|
||||
import static com.horcrux.svg.TextProperties.TextLengthAdjust;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Text view
|
||||
*/
|
||||
|
||||
@SuppressLint("ViewConstructor")
|
||||
class TextView extends GroupView {
|
||||
String mTextLength = null;
|
||||
|
||||
@@ -20,9 +20,6 @@ import com.facebook.react.bridge.ReactContext;
|
||||
import com.facebook.react.common.ReactConstants;
|
||||
import com.facebook.react.uimanager.annotations.ReactProp;
|
||||
|
||||
/**
|
||||
* Shadow node for virtual Use view
|
||||
*/
|
||||
@SuppressLint("ViewConstructor")
|
||||
class UseView extends RenderableView {
|
||||
private String mHref;
|
||||
|
||||
Reference in New Issue
Block a user