[NUI] Add file comment and end empty line
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.XamlBuild / src / public / EXamlBuild / EXaml / EXamlCreateObject / EXamlCreateDPObject.cs
1 /*
2  * Copyright(c) 2022 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 Mono.Cecil;
18 using System;
19 using System.Collections.Generic;
20 using System.Text;
21 using Tizen.NUI.EXaml.Build.Tasks;
22
23 namespace Tizen.NUI.EXaml
24 {
25     internal class EXamlCreateDPObject : EXamlCreateObject
26     {
27         public EXamlCreateDPObject(EXamlContext context, object value, TypeReference type, string prefix) : base(context, null, type)
28         {
29             this.value = value;
30             this.prefix = prefix;
31         }
32
33         internal override string Write()
34         {
35             if (false == IsValid)
36             {
37                 return "";
38             }
39
40             string ret = String.Format("({0} ({1} {2}))\n",
41                          eXamlContext.GetValueString((int)EXamlOperationType.CreateDPObject),
42                          eXamlContext.GetValueString(value.ToString() + prefix),
43                          eXamlContext.GetValueString(eXamlContext.GetTypeIndex(Type)));
44
45             return ret;
46         }
47
48         private object value;
49         private string prefix;
50     }
51 }
52