method definitions enabled for override (removed from @private)

This commit is contained in:
Vladimir Enchev
2015-03-26 11:50:05 +02:00
parent 8ea1c5c743
commit 6700b98ce0
3 changed files with 5 additions and 4 deletions

View File

@@ -65,9 +65,10 @@
*/
unbind(property: string);
_onBindingContextChanged(oldValue: any, newValue: any);
//@private
_updateTwoWayBinding(propertyName: string, value: any);
_onBindingContextChanged(oldValue: any, newValue: any);
//@endprivate
}
}

View File

@@ -181,7 +181,6 @@ declare module "ui/core/dependency-observable" {
* This routine allows for various value modifiers per Property, which is used for inheritance, data-binding and styling purposes.
*/
export class DependencyObservable extends observable.Observable {
//@private
// TODO: Do we want to expose the get/setValue methods as public?
/**
* Gets a value for the property.

5
ui/core/view.d.ts vendored
View File

@@ -368,6 +368,9 @@ declare module "ui/core/view" {
onUnloaded(): void;
isLoaded: boolean;
_addView(view: View);
_removeView(view: View);
// TODO: Implement logic for stripping these lines out
//@private
_domId: number;
@@ -375,8 +378,6 @@ declare module "ui/core/view" {
_isAddedToNativeVisualTree: boolean;
_addView(view: View);
_removeView(view: View);
/**
* Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.
*/