javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/KOList.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 04 Apr 2013 13:08:26 +0200
branchmodel
changeset 930 e8916518b38d
parent 928 ac45e76f196e
child 950 445d5f1d4177
permissions -rw-r--r--
clone() on model classes
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.htmlpage;
    19 
    20 import java.util.ArrayList;
    21 import java.util.Collection;
    22 import java.util.Iterator;
    23 import org.apidesign.bck2brwsr.core.JavaScriptOnly;
    24 
    25 /**
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public final class KOList<T> extends ArrayList<T> {
    30     private final String name;
    31     private final String[] deps;
    32     private Knockout model;
    33 
    34     public KOList(String name, String... deps) {
    35         this.name = name;
    36         this.deps = deps;
    37     }
    38     
    39     public void assign(Knockout model) {
    40         this.model = model;
    41     }
    42 
    43     @Override
    44     public boolean add(T e) {
    45         boolean ret = super.add(e);
    46         notifyChange();
    47         return ret;
    48     }
    49 
    50     @Override
    51     public boolean addAll(Collection<? extends T> c) {
    52         boolean ret = super.addAll(c);
    53         notifyChange();
    54         return ret;
    55     }
    56 
    57     @Override
    58     public boolean addAll(int index, Collection<? extends T> c) {
    59         boolean ret = super.addAll(index, c);
    60         notifyChange();
    61         return ret;
    62     }
    63 
    64     @Override
    65     public boolean remove(Object o) {
    66         boolean ret = super.remove(o);
    67         notifyChange();
    68         return ret;
    69     }
    70 
    71     @Override
    72     public void clear() {
    73         super.clear();
    74         notifyChange();
    75     }
    76 
    77     @Override
    78     public boolean removeAll(Collection<?> c) {
    79         boolean ret = super.removeAll(c);
    80         notifyChange();
    81         return ret;
    82     }
    83 
    84     @Override
    85     public boolean retainAll(Collection<?> c) {
    86         boolean ret = super.retainAll(c);
    87         notifyChange();
    88         return ret;
    89     }
    90 
    91     @Override
    92     public T set(int index, T element) {
    93         T ret = super.set(index, element);
    94         notifyChange();
    95         return ret;
    96     }
    97 
    98     @Override
    99     public void add(int index, T element) {
   100         super.add(index, element);
   101         notifyChange();
   102     }
   103 
   104     @Override
   105     public T remove(int index) {
   106         T ret = super.remove(index);
   107         notifyChange();
   108         return ret;
   109     }
   110 
   111     @Override
   112     public String toString() {
   113         Iterator<T> it = iterator();
   114         if (!it.hasNext()) {
   115             return "[]";
   116         }
   117         String sep = "";
   118         StringBuilder sb = new StringBuilder();
   119         sb.append('[');
   120         while (it.hasNext()) {
   121             T t = it.next();
   122             sb.append(sep);
   123             sb.append(ConvertTypes.toJSON(t));
   124             sep = ",";
   125         }
   126         sb.append(']');
   127         return sb.toString();
   128     }
   129     
   130     
   131     @JavaScriptOnly(name = "koArray", value = "function() { return this.toArray___3Ljava_lang_Object_2(); }")
   132     private static native int koArray();
   133 
   134     private void notifyChange() {
   135         Knockout m = model;
   136         if (m == null) {
   137             return;
   138         }
   139         m.valueHasMutated(name);
   140         for (String dependant : deps) {
   141             m.valueHasMutated(dependant);
   142         }
   143     }
   144 
   145     @Override
   146     public KOList clone() {
   147         return (KOList)super.clone();
   148     }
   149     
   150 }