2 * Copyright(c) 2021 Samsung Electronics Co., Ltd.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 using System.Collections.Generic;
19 using System.Reflection;
22 namespace Tizen.NUI.EXaml
24 internal class GatherBindablePropertiesBlock : Action
26 public GatherBindablePropertiesBlock(GlobalDataList globalDataList, Action parent)
29 this.globalDataList = globalDataList;
32 private Action parent;
33 private GlobalDataList globalDataList;
35 public Action DealChar(char c)
45 childOp = new GetValueListAction(')', this);
56 private GetValueListAction childOp;
63 public void OnActive()
65 int typeIndex = int.Parse(childOp.ValueList[0] as string);
66 string propertyName = childOp.ValueList[1] as string;
68 globalDataList.PreLoadOperations.Add(new GatherBindableProperties(globalDataList, typeIndex, propertyName));