2 |
3 | {{checked}}
4 |
5 |
6 | {{text}}
7 |
8 |
9 |
10 |
28 |
--------------------------------------------------------------------------------
/android/inspector/src/main/java/com/taobao/weex/devtools/json/annotation/JsonProperty.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | package com.taobao.weex.devtools.json.annotation;
11 |
12 | import java.lang.annotation.Retention;
13 | import java.lang.annotation.RetentionPolicy;
14 |
15 | @Retention(RetentionPolicy.RUNTIME)
16 | public @interface JsonProperty {
17 |
18 | boolean required() default false;
19 |
20 | }
21 |
22 |
--------------------------------------------------------------------------------
/ios/WXDevtool/WXDevTool/Source/PonyDebugger/PDContainerIndex.h:
--------------------------------------------------------------------------------
1 | //
2 | // PDContainerIndex.h
3 | // PonyDebugger
4 | //
5 | // Created by Wen-Hao Lue on 2013-04-28.
6 | //
7 | // Licensed to Square, Inc. under one or more contributor license agreements.
8 | // See the LICENSE file distributed with this work for the terms under
9 | // which Square, Inc. licenses this file to you.
10 | //
11 |
12 | #import