json/src/main/java/org/netbeans/html/json/impl/PropertyBindingAccessor.java
branchNonMutable258088
changeset 1055 c61d247f087a
parent 1028 453e44c757ff
     1.1 --- a/json/src/main/java/org/netbeans/html/json/impl/PropertyBindingAccessor.java	Sun Dec 13 21:12:26 2015 +0100
     1.2 +++ b/json/src/main/java/org/netbeans/html/json/impl/PropertyBindingAccessor.java	Mon Feb 22 19:58:32 2016 +0100
     1.3 @@ -64,8 +64,7 @@
     1.4      }
     1.5  
     1.6      protected abstract <M> PropertyBinding newBinding(
     1.7 -        Proto.Type<M> access, Bindings<?> bindings, String name, int index, M model, boolean readOnly
     1.8 -    );
     1.9 +        Proto.Type<M> access, Bindings<?> bindings, String name, int index, M model, byte propertyType);
    1.10      protected abstract JSONCall newCall(
    1.11          BrwsrCtx ctx, RcvrJSON callback,
    1.12          String headers, String urlBefore, String urlAfter,
    1.13 @@ -87,9 +86,9 @@
    1.14      }
    1.15  
    1.16      static <M> PropertyBinding create(
    1.17 -        Proto.Type<M> access, Bindings<?> bindings, String name, int index, M model , boolean readOnly
    1.18 +        Proto.Type<M> access, Bindings<?> bindings, String name, int index, M model , byte propertyType
    1.19      ) {
    1.20 -        return DEFAULT.newBinding(access, bindings, name, index, model, readOnly);
    1.21 +        return DEFAULT.newBinding(access, bindings, name, index, model, propertyType);
    1.22      }
    1.23      public static JSONCall createCall(
    1.24          BrwsrCtx ctx, RcvrJSON callback,