| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 part of $LIBRARYNAME; | 7 part of $LIBRARYNAME; |
| 8 | 8 |
| 9 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { | 9 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { |
| 10 factory $CLASSNAME(String data) => _$(CLASSNAME)FactoryProvider.create$CLASSNA
ME(data); | 10 factory $CLASSNAME(String data) => _$(CLASSNAME)FactoryProvider.create$CLASSNA
ME(data); |
| 11 $!MEMBERS | 11 $!MEMBERS |
| 12 |
| 13 $if DART2JS |
| 14 @Creates('Null') // Set from Dart code; does not instantiate a native type. |
| 15 $endif |
| 16 StreamSubscription _textBinding; |
| 17 |
| 18 @Experimental |
| 19 void bind(String name, model, String path) { |
| 20 if (name != 'text') { |
| 21 super.bind(name, model, path); |
| 22 return; |
| 23 } |
| 24 |
| 25 unbind('text'); |
| 26 |
| 27 _textBinding = new DataBinding(model, path) |
| 28 .bindSync((value) { text = '$value'; }); |
| 29 } |
| 30 |
| 31 @Experimental |
| 32 void unbind(String name) { |
| 33 if (name != 'text') { |
| 34 super.unbind(name); |
| 35 return; |
| 36 } |
| 37 |
| 38 if (_textBinding == null) return; |
| 39 |
| 40 _textBinding.cancel(); |
| 41 _textBinding = null; |
| 42 } |
| 43 |
| 44 @Experimental |
| 45 void unbindAll() { |
| 46 unbind('text'); |
| 47 super.unbindAll(); |
| 48 } |
| 12 } | 49 } |
| OLD | NEW |