ebebba94c3b4ff9920928b24d5773cd49c673f2a
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.XamlBuild / src / public / EXamlBuild / EXaml / EXamlAddToCollectionInstance.cs
1 /*
2  * Copyright(c) 2021 Samsung Electronics Co., Ltd.
3  *
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
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  *
16  */
17 using System;
18 using System.Collections.Generic;
19 using System.IO;
20 using System.Reflection;
21 using System.Text;
22 using Tizen.NUI.Binding;
23 using Tizen.NUI.EXaml.Build.Tasks;
24
25 namespace Tizen.NUI.EXaml
26 {
27     //use ~~
28     internal class EXamlAddToCollectionInstance : EXamlOperation
29     {
30         internal override string Write()
31         {
32             string ret = String.Format("({0} ({1} {2}))\n",
33                          eXamlContext.GetValueString((int)EXamlOperationType.AddToCollectionObject),
34                          eXamlContext.GetValueString(instance.Index),
35                          eXamlContext.GetValueString(value));
36
37             return ret;
38         }
39
40         public EXamlAddToCollectionInstance(EXamlContext context, EXamlCreateObject instance, object value)
41             : base(context)
42         {
43             this.instance = instance;
44             this.value = value;
45
46             eXamlContext.eXamlOperations.Add(this);
47         }
48
49         private EXamlCreateObject instance;
50         private object value;
51     }
52 }