DATABIND : Bug fixed that can not load startup properties. 73/20073/1
authorjaeyeol lee <jaeyeol148.lee@samsung.com>
Sat, 26 Apr 2014 06:31:10 +0000 (15:31 +0900)
committerjaeyeol lee <jaeyeol148.lee@samsung.com>
Sat, 26 Apr 2014 06:31:10 +0000 (15:31 +0900)
Change-Id: I5577ddad1045ce632b3ac850dc2b31aaaffff1eb
Signed-off-by: jaeyeol lee <jaeyeol148.lee@samsung.com>
org.tizen.webuibuilder/src/org/tizen/webuibuilder/ui/views/databinding/model/BindingData.java

index 6eb19a9..63e59e1 100644 (file)
@@ -144,8 +144,8 @@ public class BindingData {
      * @param modelName
      * @param updateOnStartUp
      */
-    public BindingData( String name, Boolean updateOnStartUp ) {
-        this.modelName = name;
+    public BindingData( String sourceName, Boolean updateOnStartUp ) {
+        this.sourceName = sourceName;
         this.updateOnStartup = updateOnStartUp;
     }