nativescript-ui-core
Advanced tools
Comparing version 1.0.1 to 2.0.0
{ | ||
"name": "nativescript-ui-core", | ||
"version": "1.0.1", | ||
"version": "2.0.0", | ||
"description": "Helper plugin that contains common native code shared among plugins.", | ||
@@ -9,4 +9,4 @@ "main": "ui-core", | ||
"platforms": { | ||
"android": "3.4.0", | ||
"ios": "3.4.0" | ||
"android": "4.2.0", | ||
"ios": "4.2.0" | ||
} | ||
@@ -53,4 +53,4 @@ }, | ||
"devDependencies": { | ||
"tns-core-modules": "^3.4.0", | ||
"tns-platform-declarations": "^3.4.0", | ||
"tns-core-modules": "~4.2.0", | ||
"tns-platform-declarations": "~4.2.0", | ||
"typescript": "~2.3.0", | ||
@@ -57,0 +57,0 @@ "prompt": "^1.0.0", |
@@ -5,3 +5,4 @@ declare module com { | ||
export module common { | ||
export class BuildConfig { | ||
export class BuildConfig extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.BuildConfig>; | ||
public static DEBUG: boolean; | ||
@@ -20,3 +21,2 @@ public static APPLICATION_ID: string; | ||
/// <reference path="./java.lang.String.d.ts" /> | ||
declare module com { | ||
@@ -27,2 +27,3 @@ export module telerik { | ||
export class CollectionChangeAction { | ||
public static class: java.lang.Class<com.telerik.android.common.CollectionChangeAction>; | ||
public static ADD: com.telerik.android.common.CollectionChangeAction; | ||
@@ -35,2 +36,3 @@ public static REMOVE: com.telerik.android.common.CollectionChangeAction; | ||
public static values(): native.Array<com.telerik.android.common.CollectionChangeAction>; | ||
public static valueOf(param0: java.lang.Class<any>, param1: string): java.lang.Enum<any>; | ||
} | ||
@@ -42,3 +44,2 @@ } | ||
/// <reference path="./com.telerik.android.common.CollectionChangedEvent.d.ts" /> | ||
declare module com { | ||
@@ -48,10 +49,12 @@ export module telerik { | ||
export module common { | ||
export class CollectionChangeListener { | ||
export class CollectionChangeListener<E> extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.CollectionChangeListener<any>>; | ||
/** | ||
* Constructs a new instance of the com.telerik.android.common.CollectionChangeListener interface with the provided implementation. | ||
* Constructs a new instance of the com.telerik.android.common.CollectionChangeListener<any> interface with the provided implementation. An empty constructor exists calling super() when extending the interface class. | ||
*/ | ||
public constructor(implementation: { | ||
collectionChanged(param0: com.telerik.android.common.CollectionChangedEvent): void; | ||
collectionChanged(param0: com.telerik.android.common.CollectionChangedEvent<E>): void; | ||
}); | ||
public collectionChanged(param0: com.telerik.android.common.CollectionChangedEvent): void; | ||
public constructor(); | ||
public collectionChanged(param0: com.telerik.android.common.CollectionChangedEvent<E>): void; | ||
} | ||
@@ -63,6 +66,2 @@ } | ||
import javautilList = java.util.List; | ||
/// <reference path="./com.telerik.android.common.CollectionChangeAction.d.ts" /> | ||
/// <reference path="./com.telerik.android.common.ObservableCollection.d.ts" /> | ||
/// <reference path="./java.util.List.d.ts" /> | ||
declare module com { | ||
@@ -72,11 +71,12 @@ export module telerik { | ||
export module common { | ||
export class CollectionChangedEvent { | ||
public getSource(): com.telerik.android.common.ObservableCollection; | ||
public getOldItems(): javautilList<javalangObject>; | ||
public constructor(param0: com.telerik.android.common.ObservableCollection, param1: com.telerik.android.common.CollectionChangeAction); | ||
export class CollectionChangedEvent<E> extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.CollectionChangedEvent<any>>; | ||
public constructor(param0: com.telerik.android.common.ObservableCollection<any>, param1: com.telerik.android.common.CollectionChangeAction, param2: java.util.List<any>, param3: java.util.List<any>, param4: number, param5: number); | ||
public getNewIndex(): number; | ||
public getSource(): com.telerik.android.common.ObservableCollection<any>; | ||
public getNewItems(): java.util.List<any>; | ||
public getOldIndex(): number; | ||
public constructor(param0: com.telerik.android.common.ObservableCollection, param1: com.telerik.android.common.CollectionChangeAction, param2: javautilList<javalangObject>, param3: javautilList<javalangObject>, param4: number, param5: number); | ||
public getNewItems(): javautilList<javalangObject>; | ||
public constructor(param0: com.telerik.android.common.ObservableCollection<E>, param1: com.telerik.android.common.CollectionChangeAction); | ||
public action(): com.telerik.android.common.CollectionChangeAction; | ||
public getOldItems(): java.util.List<any>; | ||
} | ||
@@ -88,4 +88,2 @@ } | ||
import javalangObject = java.lang.Object; | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -95,10 +93,11 @@ export module telerik { | ||
export module common { | ||
export class DataTuple { | ||
public firstValue: javalangObject; | ||
public secondValue: javalangObject; | ||
public thirdValue: javalangObject; | ||
export class DataTuple<T, U, V> extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.DataTuple<any,any,any>>; | ||
public firstValue: T; | ||
public secondValue: U; | ||
public thirdValue: V; | ||
public constructor(param0: T, param1: U, param2: V); | ||
public toString(): string; | ||
public constructor(param0: javalangObject, param1: javalangObject, param2: javalangObject); | ||
public constructor(param0: javalangObject, param1: javalangObject); | ||
public constructor(param0: javalangObject); | ||
public constructor(param0: T, param1: U); | ||
public constructor(param0: T); | ||
} | ||
@@ -110,5 +109,2 @@ } | ||
import javautilCalendar = java.util.Calendar; | ||
/// <reference path="./com.telerik.android.common.TimeSpan.d.ts" /> | ||
/// <reference path="./java.util.Calendar.d.ts" /> | ||
declare module com { | ||
@@ -118,9 +114,10 @@ export module telerik { | ||
export module common { | ||
export class DateTimeExtensions { | ||
public static getQuarterOfYear(param0: javautilCalendar): number; | ||
public static getSecondOfYear(param0: javautilCalendar): number; | ||
export class DateTimeExtensions extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.DateTimeExtensions>; | ||
public static subtract(param0: java.util.Calendar, param1: java.util.Calendar): com.telerik.android.common.TimeSpan; | ||
public static getHourOfYear(param0: java.util.Calendar): number; | ||
public static getQuarterOfYear(param0: java.util.Calendar): number; | ||
public constructor(); | ||
public static getMinuteOfYear(param0: javautilCalendar): number; | ||
public static getHourOfYear(param0: javautilCalendar): number; | ||
public static subtract(param0: javautilCalendar, param1: javautilCalendar): com.telerik.android.common.TimeSpan; | ||
public static getMinuteOfYear(param0: java.util.Calendar): number; | ||
public static getSecondOfYear(param0: java.util.Calendar): number; | ||
} | ||
@@ -132,3 +129,2 @@ } | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -138,10 +134,12 @@ export module telerik { | ||
export module common { | ||
export class DependencyPropertyChangedListener { | ||
export class DependencyPropertyChangedListener extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.DependencyPropertyChangedListener>; | ||
/** | ||
* Constructs a new instance of the com.telerik.android.common.DependencyPropertyChangedListener interface with the provided implementation. | ||
* Constructs a new instance of the com.telerik.android.common.DependencyPropertyChangedListener interface with the provided implementation. An empty constructor exists calling super() when extending the interface class. | ||
*/ | ||
public constructor(implementation: { | ||
onPropertyChanged(param0: javalangObject, param1: number, param2: javalangObject): void; | ||
onPropertyChanged(param0: any, param1: number, param2: any): void; | ||
}); | ||
public onPropertyChanged(param0: javalangObject, param1: number, param2: javalangObject): void; | ||
public constructor(); | ||
public onPropertyChanged(param0: any, param1: number, param2: any): void; | ||
} | ||
@@ -153,3 +151,2 @@ } | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -159,10 +156,12 @@ export module telerik { | ||
export module common { | ||
export class Function { | ||
export class Function<TArg, TResult> extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.Function<any,any>>; | ||
/** | ||
* Constructs a new instance of the com.telerik.android.common.Function interface with the provided implementation. | ||
* Constructs a new instance of the com.telerik.android.common.Function<any,any> interface with the provided implementation. An empty constructor exists calling super() when extending the interface class. | ||
*/ | ||
public constructor(implementation: { | ||
apply(param0: javalangObject): javalangObject; | ||
apply(param0: TArg): TResult; | ||
}); | ||
public apply(param0: javalangObject): javalangObject; | ||
public constructor(); | ||
public apply(param0: TArg): TResult; | ||
} | ||
@@ -174,3 +173,2 @@ } | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -180,10 +178,12 @@ export module telerik { | ||
export module common { | ||
export class Function2 { | ||
export class Function2<TArg1, TArg2, TResult> extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.Function2<any,any,any>>; | ||
/** | ||
* Constructs a new instance of the com.telerik.android.common.Function2 interface with the provided implementation. | ||
* Constructs a new instance of the com.telerik.android.common.Function2<any,any,any> interface with the provided implementation. An empty constructor exists calling super() when extending the interface class. | ||
*/ | ||
public constructor(implementation: { | ||
apply(param0: javalangObject, param1: javalangObject): javalangObject; | ||
apply(param0: TArg1, param1: TArg2): TResult; | ||
}); | ||
public apply(param0: javalangObject, param1: javalangObject): javalangObject; | ||
public constructor(); | ||
public apply(param0: TArg1, param1: TArg2): TResult; | ||
} | ||
@@ -195,4 +195,2 @@ } | ||
/// <reference path="./com.telerik.android.common.Procedure.d.ts" /> | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -202,10 +200,12 @@ export module telerik { | ||
export module common { | ||
export class Function2Async { | ||
export class Function2Async<TArg1, TArg2, TResult> extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.Function2Async<any,any,any>>; | ||
/** | ||
* Constructs a new instance of the com.telerik.android.common.Function2Async interface with the provided implementation. | ||
* Constructs a new instance of the com.telerik.android.common.Function2Async<any,any,any> interface with the provided implementation. An empty constructor exists calling super() when extending the interface class. | ||
*/ | ||
public constructor(implementation: { | ||
apply(param0: javalangObject, param1: javalangObject, param2: com.telerik.android.common.Procedure): void; | ||
apply(param0: TArg1, param1: TArg2, param2: com.telerik.android.common.Procedure<TResult>): void; | ||
}); | ||
public apply(param0: javalangObject, param1: javalangObject, param2: com.telerik.android.common.Procedure): void; | ||
public constructor(); | ||
public apply(param0: TArg1, param1: TArg2, param2: com.telerik.android.common.Procedure<TResult>): void; | ||
} | ||
@@ -217,8 +217,2 @@ } | ||
import javautilArrayList = java.util.ArrayList; | ||
import javautilCollection = java.util.Collection; | ||
/// <reference path="./com.telerik.android.common.CollectionChangeListener.d.ts" /> | ||
/// <reference path="./com.telerik.android.common.CollectionChangedEvent.d.ts" /> | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
/// <reference path="./java.util.Collection.d.ts" /> | ||
declare module com { | ||
@@ -228,18 +222,38 @@ export module telerik { | ||
export module common { | ||
export class ObservableCollection extends javautilArrayList<javalangObject> { | ||
public addCollectionChangeListener(param0: com.telerik.android.common.CollectionChangeListener): void; | ||
public remove(param0: number): javalangObject; | ||
export class ObservableCollection<E> extends java.util.ArrayList<any> { | ||
public static class: java.lang.Class<com.telerik.android.common.ObservableCollection<any>>; | ||
public addCollectionChangeListener(param0: com.telerik.android.common.CollectionChangeListener<any>): void; | ||
public removeCollectionChangeListener(param0: com.telerik.android.common.CollectionChangeListener<any>): void; | ||
public addAll(param0: java.util.Collection<any>): boolean; | ||
public removeRange(param0: number, param1: number): void; | ||
public add(param0: number, param1: javalangObject): void; | ||
public addAll(param0: number, param1: javautilCollection<javalangObject>): boolean; | ||
public addAll(param0: javautilCollection<javalangObject>): boolean; | ||
public notifyListeners(param0: com.telerik.android.common.CollectionChangedEvent): void; | ||
public removeCollectionChangeListener(param0: com.telerik.android.common.CollectionChangeListener): void; | ||
public add(param0: javalangObject): boolean; | ||
public remove(param0: javalangObject): boolean; | ||
public removeAll(param0: javautilCollection<javalangObject>): boolean; | ||
public isEmpty(): boolean; | ||
public add(param0: any): boolean; | ||
public containsAll(param0: java.util.Collection<any>): boolean; | ||
public size(): number; | ||
public lastIndexOf(param0: any): number; | ||
public remove(param0: number): any; | ||
public notifyListeners(param0: com.telerik.android.common.CollectionChangedEvent<any>): void; | ||
public iterator(): java.util.Iterator<any>; | ||
public toArray(param0: native.Array<any>): native.Array<any>; | ||
public constructor(); | ||
public toArray(): native.Array<any>; | ||
public clear(): void; | ||
public get(param0: number): any; | ||
public subList(param0: number, param1: number): java.util.List<any>; | ||
public beginUpdate(): void; | ||
public listIterator(param0: number): java.util.ListIterator<any>; | ||
public endUpdate(): void; | ||
public hashCode(): number; | ||
public constructor(param0: number); | ||
public contains(param0: any): boolean; | ||
public remove(param0: any): boolean; | ||
public removeAll(param0: java.util.Collection<any>): boolean; | ||
public add(param0: number, param1: any): void; | ||
public addAll(param0: number, param1: java.util.Collection<any>): boolean; | ||
public retainAll(param0: java.util.Collection<any>): boolean; | ||
public indexOf(param0: any): number; | ||
public equals(param0: any): boolean; | ||
public set(param0: number, param1: any): any; | ||
public constructor(param0: java.util.Collection<any>); | ||
public listIterator(): java.util.ListIterator<any>; | ||
} | ||
@@ -251,3 +265,2 @@ } | ||
/// <reference path="./java.lang.String.d.ts" /> | ||
declare module com { | ||
@@ -258,2 +271,3 @@ export module telerik { | ||
export class Orientation { | ||
public static class: java.lang.Class<com.telerik.android.common.Orientation>; | ||
public static HORIZONTAL: com.telerik.android.common.Orientation; | ||
@@ -263,2 +277,3 @@ public static VERTICAL: com.telerik.android.common.Orientation; | ||
public static values(): native.Array<com.telerik.android.common.Orientation>; | ||
public static valueOf(param0: java.lang.Class<any>, param1: string): java.lang.Enum<any>; | ||
} | ||
@@ -270,3 +285,2 @@ } | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -276,10 +290,12 @@ export module telerik { | ||
export module common { | ||
export class Procedure { | ||
export class Procedure<TArg> extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.Procedure<any>>; | ||
/** | ||
* Constructs a new instance of the com.telerik.android.common.Procedure interface with the provided implementation. | ||
* Constructs a new instance of the com.telerik.android.common.Procedure<any> interface with the provided implementation. An empty constructor exists calling super() when extending the interface class. | ||
*/ | ||
public constructor(implementation: { | ||
apply(param0: javalangObject): void; | ||
apply(param0: TArg): void; | ||
}); | ||
public apply(param0: javalangObject): void; | ||
public constructor(); | ||
public apply(param0: TArg): void; | ||
} | ||
@@ -291,3 +307,2 @@ } | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -297,10 +312,12 @@ export module telerik { | ||
export module common { | ||
export class Procedure2 { | ||
export class Procedure2<TArg1, TArg2> extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.Procedure2<any,any>>; | ||
/** | ||
* Constructs a new instance of the com.telerik.android.common.Procedure2 interface with the provided implementation. | ||
* Constructs a new instance of the com.telerik.android.common.Procedure2<any,any> interface with the provided implementation. An empty constructor exists calling super() when extending the interface class. | ||
*/ | ||
public constructor(implementation: { | ||
apply(param0: javalangObject, param1: javalangObject): void; | ||
apply(param0: TArg1, param1: TArg2): void; | ||
}); | ||
public apply(param0: javalangObject, param1: javalangObject): void; | ||
public constructor(); | ||
public apply(param0: TArg1, param1: TArg2): void; | ||
} | ||
@@ -312,6 +329,2 @@ } | ||
import javautilHashMap = java.util.HashMap; | ||
/// <reference path="./com.telerik.android.common.DependencyPropertyChangedListener.d.ts" /> | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
/// <reference path="./java.util.HashMap.d.ts" /> | ||
declare module com { | ||
@@ -321,24 +334,27 @@ export module telerik { | ||
export module common { | ||
export abstract class PropertyManager extends javalangObject { | ||
export abstract class PropertyManager extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.PropertyManager>; | ||
public static LOCAL_VALUE: number; | ||
public static PALETTE_VALUE: number; | ||
public static DEFAULT_VALUE: number; | ||
public static UNSET_VALUE: javalangObject; | ||
public static registerProperty(param0: javalangObject, param1: com.telerik.android.common.DependencyPropertyChangedListener): number; | ||
public static UNSET_VALUE: any; | ||
public getValue(param0: number): any; | ||
public resetPropertyValue(param0: number): void; | ||
public constructor(); | ||
public getValue(param0: number): javalangObject; | ||
public setValue(param0: number, param1: javalangObject): void; | ||
public setValue(param0: number, param1: number, param2: javalangObject): void; | ||
public static registerProperty(param0: any, param1: com.telerik.android.common.DependencyPropertyChangedListener): number; | ||
public setValue(param0: number, param1: number, param2: any): void; | ||
public setValue(param0: number, param1: any): void; | ||
} | ||
export module PropertyManager { | ||
export class PropertyBag { | ||
public constructor(param0: javalangObject); | ||
public resolveValue(): javalangObject; | ||
public setValueForKey(param0: number, param1: javalangObject): void; | ||
export class PropertyBag extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.PropertyManager.PropertyBag>; | ||
public setValueForKey(param0: number, param1: any): void; | ||
public constructor(param0: any); | ||
public resolveValue(): any; | ||
} | ||
export class PropertyMetadata { | ||
public propertyBags: javautilHashMap<javalangObject, javalangObject>; | ||
public constructor(param0: javalangObject, param1: com.telerik.android.common.DependencyPropertyChangedListener); | ||
public defaultValue(): javalangObject; | ||
export class PropertyMetadata extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.PropertyManager.PropertyMetadata>; | ||
public propertyBags: java.util.HashMap<java.lang.Integer,com.telerik.android.common.PropertyManager.PropertyBag>; | ||
public defaultValue(): any; | ||
public constructor(param0: any, param1: com.telerik.android.common.DependencyPropertyChangedListener); | ||
public getListener(): com.telerik.android.common.DependencyPropertyChangedListener; | ||
@@ -352,3 +368,2 @@ } | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -358,3 +373,4 @@ export module telerik { | ||
export module common { | ||
export class RadThickness { | ||
export class RadThickness extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.RadThickness>; | ||
public left: number; | ||
@@ -365,4 +381,5 @@ public top: number; | ||
public constructor(param0: number, param1: number, param2: number, param3: number); | ||
public equals(param0: any): boolean; | ||
public clone(): any; | ||
public constructor(); | ||
public equals(param0: javalangObject): boolean; | ||
public clone(): com.telerik.android.common.RadThickness; | ||
@@ -376,4 +393,2 @@ public static getEmpty(): com.telerik.android.common.RadThickness; | ||
import androidcontentContext = android.content.Context; | ||
/// <reference path="./android.content.Context.d.ts" /> | ||
declare module com { | ||
@@ -383,6 +398,7 @@ export module telerik { | ||
export module common { | ||
export class TestAPI { | ||
public showToast(param0: androidcontentContext): void; | ||
export class TestAPI extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.TestAPI>; | ||
public showToast(param0: globalAndroid.content.Context): void; | ||
public constructor(); | ||
public showToast3(param0: androidcontentContext): void; | ||
public showToast3(param0: globalAndroid.content.Context): void; | ||
} | ||
@@ -394,4 +410,2 @@ } | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
/// <reference path="./java.util.Calendar.d.ts" /> | ||
declare module com { | ||
@@ -401,10 +415,10 @@ export module telerik { | ||
export module common { | ||
export class TimeSpan { | ||
export class TimeSpan extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.TimeSpan>; | ||
public static fromDays(param0: number): com.telerik.android.common.TimeSpan; | ||
public static fromMinutes(param0: number): com.telerik.android.common.TimeSpan; | ||
public static fromHours(param0: number): com.telerik.android.common.TimeSpan; | ||
public constructor(param0: javautilCalendar, param1: javautilCalendar); | ||
public constructor(param0: java.util.Calendar, param1: java.util.Calendar); | ||
public constructor(); | ||
public getMillis(): number; | ||
public compareTo(param0: javalangObject): number; | ||
public static fromMilliseconds(param0: number): com.telerik.android.common.TimeSpan; | ||
@@ -414,2 +428,3 @@ public static fromSeconds(param0: number): com.telerik.android.common.TimeSpan; | ||
public static getZero(): com.telerik.android.common.TimeSpan; | ||
public compareTo(param0: any): number; | ||
} | ||
@@ -421,16 +436,2 @@ } | ||
import androidgraphicsRectF = android.graphics.RectF; | ||
import androidgraphicsRect = android.graphics.Rect; | ||
import androidviewView = android.view.View; | ||
import javalangClass = java.lang.Class; | ||
import androidappActivity = android.app.Activity; | ||
/// <reference path="./android.app.Activity.d.ts" /> | ||
/// <reference path="./android.content.Context.d.ts" /> | ||
/// <reference path="./android.graphics.Rect.d.ts" /> | ||
/// <reference path="./android.graphics.RectF.d.ts" /> | ||
/// <reference path="./android.view.View.d.ts" /> | ||
/// <reference path="./com.telerik.android.common.math.RadRect.d.ts" /> | ||
/// <reference path="./java.lang.Class.d.ts" /> | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
/// <reference path="./java.lang.String.d.ts" /> | ||
declare module com { | ||
@@ -440,18 +441,20 @@ export module telerik { | ||
export module common { | ||
export class Util { | ||
public static getLayoutPart(param0: androidappActivity, param1: number, param2: javalangClass<javalangObject>, param3: boolean): javalangObject; | ||
public static getLayoutPart(param0: androidappActivity, param1: number, param2: javalangClass<javalangObject>): javalangObject; | ||
export class Util extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.Util>; | ||
public static getLayoutPart(param0: globalAndroid.app.Activity, param1: number, param2: java.lang.Class<any>): any; | ||
public static createViewFromXML(param0: number, param1: java.lang.Class<any>, param2: globalAndroid.content.Context): any; | ||
public static generateDummyText(param0: string): string; | ||
public static Equals(param0: javalangObject, param1: javalangObject): boolean; | ||
public static getLayoutPart(param0: globalAndroid.view.View, param1: number, param2: java.lang.Class<any>): any; | ||
public static getSP(param0: number): number; | ||
public static isNullOrEmpty(param0: string): boolean; | ||
public static toString(param0: javalangObject): string; | ||
public static getLayoutPart(param0: androidviewView, param1: number, param2: javalangClass<javalangObject>): javalangObject; | ||
public static RectFToRect(param0: androidgraphicsRectF): androidgraphicsRect; | ||
public static Equals(param0: any, param1: any): boolean; | ||
public static convertToRectF(param0: com.telerik.android.common.math.RadRect): globalAndroid.graphics.RectF; | ||
public static getLayoutPart(param0: globalAndroid.view.View, param1: number, param2: java.lang.Class<any>, param3: boolean): any; | ||
public toString(): string; | ||
public static getLayoutPart(param0: globalAndroid.app.Activity, param1: number, param2: java.lang.Class<any>, param3: boolean): any; | ||
public static getDimen(param0: number, param1: number): number; | ||
public constructor(); | ||
public static convertToRectF(param0: com.telerik.android.common.math.RadRect): androidgraphicsRectF; | ||
public static generateViewId(): number; | ||
public static getLayoutPart(param0: androidviewView, param1: number, param2: javalangClass<javalangObject>, param3: boolean): javalangObject; | ||
public static createViewFromXML(param0: number, param1: javalangClass<javalangObject>, param2: androidcontentContext): javalangObject; | ||
public static RectFToRect(param0: globalAndroid.graphics.RectF): globalAndroid.graphics.Rect; | ||
public static toString(param0: any): string; | ||
public static getDP(param0: number): number; | ||
@@ -469,3 +472,4 @@ } | ||
export module animations { | ||
export class AnimationEasingHelper { | ||
export class AnimationEasingHelper extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.animations.AnimationEasingHelper>; | ||
public constructor(); | ||
@@ -501,3 +505,2 @@ public static circularEaseOut(param0: number, param1: number, param2: number, param3: number): number; | ||
/// <reference path="./java.lang.String.d.ts" /> | ||
declare module com { | ||
@@ -509,2 +512,3 @@ export module telerik { | ||
export class EasingType { | ||
public static class: java.lang.Class<com.telerik.android.common.animations.EasingType>; | ||
public static Linear: com.telerik.android.common.animations.EasingType; | ||
@@ -532,2 +536,3 @@ public static QuadraticIn: com.telerik.android.common.animations.EasingType; | ||
public static CircularInOut: com.telerik.android.common.animations.EasingType; | ||
public static valueOf(param0: java.lang.Class<any>, param1: string): java.lang.Enum<any>; | ||
public static valueOf(param0: string): com.telerik.android.common.animations.EasingType; | ||
@@ -542,3 +547,2 @@ public static values(): native.Array<com.telerik.android.common.animations.EasingType>; | ||
/// <reference path="./java.lang.String.d.ts" /> | ||
declare module com { | ||
@@ -549,3 +553,7 @@ export module telerik { | ||
export module exceptions { | ||
export class MissingLayoutPartException { | ||
export class MissingLayoutPartException extends java.lang.Error { | ||
public static class: java.lang.Class<com.telerik.android.common.exceptions.MissingLayoutPartException>; | ||
public constructor(); | ||
public constructor(param0: java.lang.Throwable); | ||
public constructor(param0: string, param1: java.lang.Throwable); | ||
public constructor(param0: string); | ||
@@ -559,3 +567,2 @@ } | ||
/// <reference path="./java.lang.String.d.ts" /> | ||
declare module com { | ||
@@ -566,3 +573,7 @@ export module telerik { | ||
export module exceptions { | ||
export class WrongLayoutPartTypeException { | ||
export class WrongLayoutPartTypeException extends java.lang.Error { | ||
public static class: java.lang.Class<com.telerik.android.common.exceptions.WrongLayoutPartTypeException>; | ||
public constructor(); | ||
public constructor(param0: java.lang.Throwable); | ||
public constructor(param0: string, param1: java.lang.Throwable); | ||
public constructor(param0: string); | ||
@@ -576,4 +587,2 @@ } | ||
/// <reference path="./com.telerik.android.common.math.RadPoint.d.ts" /> | ||
/// <reference path="./com.telerik.android.common.math.RadRect.d.ts" /> | ||
declare module com { | ||
@@ -584,3 +593,4 @@ export module telerik { | ||
export module math { | ||
export class RadCircle { | ||
export class RadCircle extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.math.RadCircle>; | ||
public centerX: number; | ||
@@ -601,3 +611,2 @@ public centerY: number; | ||
/// <reference path="./com.telerik.android.common.math.RadPoint.d.ts" /> | ||
declare module com { | ||
@@ -608,3 +617,4 @@ export module telerik { | ||
export module math { | ||
export class RadLine { | ||
export class RadLine extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.math.RadLine>; | ||
public x1: number; | ||
@@ -624,5 +634,2 @@ public x2: number; | ||
/// <reference path="./com.telerik.android.common.math.RadPoint.d.ts" /> | ||
/// <reference path="./com.telerik.android.common.math.RadPolarCoordinates.d.ts" /> | ||
/// <reference path="./com.telerik.android.common.math.RadSize.d.ts" /> | ||
declare module com { | ||
@@ -633,3 +640,4 @@ export module telerik { | ||
export module math { | ||
export class RadMath { | ||
export class RadMath extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.math.RadMath>; | ||
public static DEG_TO_RAD_FACTOR: number; | ||
@@ -653,3 +661,2 @@ public static RAD_TO_DEG_FACTOR: number; | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -660,9 +667,10 @@ export module telerik { | ||
export module math { | ||
export class RadPoint { | ||
export class RadPoint extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.math.RadPoint>; | ||
public static getInfinityPoint(): com.telerik.android.common.math.RadPoint; | ||
public constructor(); | ||
public static round(param0: com.telerik.android.common.math.RadPoint): com.telerik.android.common.math.RadPoint; | ||
public equals(param0: javalangObject): boolean; | ||
public getX(): number; | ||
public getY(): number; | ||
public equals(param0: any): boolean; | ||
public constructor(param0: number, param1: number); | ||
@@ -683,3 +691,4 @@ public toString(): string; | ||
export module math { | ||
export class RadPolarCoordinates { | ||
export class RadPolarCoordinates extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.math.RadPolarCoordinates>; | ||
public angle: number; | ||
@@ -695,3 +704,2 @@ public radius: number; | ||
/// <reference path="./com.telerik.android.common.math.RadPoint.d.ts" /> | ||
declare module com { | ||
@@ -702,3 +710,4 @@ export module telerik { | ||
export module math { | ||
export class RadPolarVector { | ||
export class RadPolarVector extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.math.RadPolarVector>; | ||
public centerX: number; | ||
@@ -719,5 +728,2 @@ public centerY: number; | ||
/// <reference path="./com.telerik.android.common.RadThickness.d.ts" /> | ||
/// <reference path="./com.telerik.android.common.math.RadPoint.d.ts" /> | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -728,6 +734,6 @@ export module telerik { | ||
export module math { | ||
export class RadRect { | ||
export class RadRect extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.math.RadRect>; | ||
public getLocation(): com.telerik.android.common.math.RadPoint; | ||
public constructor(); | ||
public equals(param0: javalangObject): boolean; | ||
public contains(param0: number, param1: number): boolean; | ||
@@ -737,2 +743,3 @@ public getX(): number; | ||
public getCenter(): com.telerik.android.common.math.RadPoint; | ||
public equals(param0: any): boolean; | ||
public getRight(): number; | ||
@@ -761,3 +768,2 @@ public static getEmpty(): com.telerik.android.common.math.RadRect; | ||
/// <reference path="./java.lang.Object.d.ts" /> | ||
declare module com { | ||
@@ -768,3 +774,4 @@ export module telerik { | ||
export module math { | ||
export class RadSize { | ||
export class RadSize extends java.lang.Object { | ||
public static class: java.lang.Class<com.telerik.android.common.math.RadSize>; | ||
public constructor(); | ||
@@ -774,4 +781,4 @@ public halfWidth(): number; | ||
public getWidth(): number; | ||
public equals(param0: javalangObject): boolean; | ||
public static getEmpty(): com.telerik.android.common.math.RadSize; | ||
public equals(param0: any): boolean; | ||
public getHeight(): number; | ||
@@ -787,1 +794,133 @@ public static getInfinitySize(): com.telerik.android.common.math.RadSize; | ||
} | ||
declare module com { | ||
export module telerik { | ||
export module widget { | ||
export module primitives { | ||
export module panels { | ||
export class RadScrollView extends globalAndroid.widget.FrameLayout { | ||
public static class: java.lang.Class<com.telerik.widget.primitives.panels.RadScrollView>; | ||
public static SCROLLING_MODE_NONE: number; | ||
public static SCROLLING_MODE_VERTICAL: number; | ||
public static SCROLLING_MODE_HORIZONTAL: number; | ||
public static SCROLLING_MODE_BOTH: number; | ||
public isLayoutRequested(): boolean; | ||
public setSmoothScrollingEnabled(param0: boolean): void; | ||
public constructor(param0: globalAndroid.content.Context); | ||
public sendAccessibilityEvent(param0: number): void; | ||
public sendAccessibilityEventUnchecked(param0: globalAndroid.view.accessibility.AccessibilityEvent): void; | ||
public fullScroll(param0: number): boolean; | ||
public clearChildFocus(param0: globalAndroid.view.View): void; | ||
public requestChildFocus(param0: globalAndroid.view.View, param1: globalAndroid.view.View): void; | ||
public shouldDelayChildPressedState(): boolean; | ||
public onLayout(param0: boolean, param1: number, param2: number, param3: number, param4: number): void; | ||
public computeHorizontalScrollOffset(): number; | ||
public onSizeChanged(param0: number, param1: number, param2: number, param3: number): void; | ||
public invalidateChild(param0: globalAndroid.view.View, param1: globalAndroid.graphics.Rect): void; | ||
public addView(param0: globalAndroid.view.View, param1: number, param2: number): void; | ||
public fling(param0: number, param1: number): void; | ||
public computeScrollDeltaToGetChildRectOnScreen(param0: globalAndroid.graphics.Rect): globalAndroid.graphics.Point; | ||
public onMeasure(param0: number, param1: number): void; | ||
public dispatchKeyEvent(param0: globalAndroid.view.KeyEvent): boolean; | ||
public computeVerticalScrollOffset(): number; | ||
public measureChild(param0: globalAndroid.view.View, param1: number, param2: number): void; | ||
public onKeyMultiple(param0: number, param1: number, param2: globalAndroid.view.KeyEvent): boolean; | ||
public getMaxHorizontalScrollAmount(): number; | ||
public onTouchEvent(param0: globalAndroid.view.MotionEvent): boolean; | ||
public removeView(param0: globalAndroid.view.View): void; | ||
public arrowScroll(param0: number): boolean; | ||
public getChildVisibleRect(param0: globalAndroid.view.View, param1: globalAndroid.graphics.Rect, param2: globalAndroid.graphics.Point): boolean; | ||
public smoothScrollTo(param0: number, param1: number): void; | ||
public onKeyUp(param0: number, param1: globalAndroid.view.KeyEvent): boolean; | ||
public smoothScrollBy(param0: number, param1: number): void; | ||
public recomputeViewAttributes(param0: globalAndroid.view.View): void; | ||
public showContextMenuForChild(param0: globalAndroid.view.View): boolean; | ||
public unscheduleDrawable(param0: globalAndroid.graphics.drawable.Drawable): void; | ||
public requestDisallowInterceptTouchEvent(param0: boolean): void; | ||
public onOverScrolled(param0: number, param1: number, param2: boolean, param3: boolean): void; | ||
public invalidateChildInParent(param0: native.Array<number>, param1: globalAndroid.graphics.Rect): globalAndroid.view.ViewParent; | ||
public draw(param0: globalAndroid.graphics.Canvas): void; | ||
public getMaxVerticalScrollAmount(): number; | ||
public addView(param0: globalAndroid.view.View, param1: globalAndroid.view.ViewGroup.LayoutParams): void; | ||
public onKeyLongPress(param0: number, param1: globalAndroid.view.KeyEvent): boolean; | ||
public onKeyDown(param0: number, param1: globalAndroid.view.KeyEvent): boolean; | ||
public requestLayout(): void; | ||
public addView(param0: globalAndroid.view.View, param1: number): void; | ||
public bringChildToFront(param0: globalAndroid.view.View): void; | ||
public startActionModeForChild(param0: globalAndroid.view.View, param1: globalAndroid.view.ActionMode.Callback): globalAndroid.view.ActionMode; | ||
public isFillViewport(): boolean; | ||
public executeKeyEvent(param0: globalAndroid.view.KeyEvent): boolean; | ||
public requestChildRectangleOnScreen(param0: globalAndroid.view.View, param1: globalAndroid.graphics.Rect, param2: boolean): boolean; | ||
public onGenericMotionEvent(param0: globalAndroid.view.MotionEvent): boolean; | ||
public scrollTo(param0: number, param1: number): void; | ||
public computeVerticalScrollRange(): number; | ||
public onAttachedToWindow(): void; | ||
public onInitializeAccessibilityNodeInfo(param0: globalAndroid.view.accessibility.AccessibilityNodeInfo): void; | ||
public getTopFadingEdgeStrength(): number; | ||
public focusSearch(param0: globalAndroid.view.View, param1: number): globalAndroid.view.View; | ||
public computeScroll(): void; | ||
public invalidateDrawable(param0: globalAndroid.graphics.drawable.Drawable): void; | ||
public requestTransparentRegion(param0: globalAndroid.view.View): void; | ||
public onInitializeAccessibilityEvent(param0: globalAndroid.view.accessibility.AccessibilityEvent): void; | ||
public addView(param0: globalAndroid.view.View, param1: number, param2: globalAndroid.view.ViewGroup.LayoutParams): void; | ||
public addView(param0: globalAndroid.view.View): void; | ||
public getLeftFadingEdgeStrength(): number; | ||
public onInterceptTouchEvent(param0: globalAndroid.view.MotionEvent): boolean; | ||
public createContextMenu(param0: globalAndroid.view.ContextMenu): void; | ||
public constructor(param0: globalAndroid.content.Context, param1: globalAndroid.util.AttributeSet); | ||
public getScrollMode(): number; | ||
public childDrawableStateChanged(param0: globalAndroid.view.View): void; | ||
public setFillViewport(param0: boolean): void; | ||
public unscheduleDrawable(param0: globalAndroid.graphics.drawable.Drawable, param1: java.lang.Runnable): void; | ||
public requestFitSystemWindows(): void; | ||
public performAccessibilityAction(param0: number, param1: globalAndroid.os.Bundle): boolean; | ||
public onRequestFocusInDescendants(param0: number, param1: globalAndroid.graphics.Rect): boolean; | ||
public updateViewLayout(param0: globalAndroid.view.View, param1: globalAndroid.view.ViewGroup.LayoutParams): void; | ||
public getParentForAccessibility(): globalAndroid.view.ViewParent; | ||
public getRightFadingEdgeStrength(): number; | ||
public getBottomFadingEdgeStrength(): number; | ||
public setScrollMode(param0: number): void; | ||
public onDetachedFromWindow(): void; | ||
public scheduleDrawable(param0: globalAndroid.graphics.drawable.Drawable, param1: java.lang.Runnable, param2: number): void; | ||
public focusableViewAvailable(param0: globalAndroid.view.View): void; | ||
public focusSearch(param0: number): globalAndroid.view.View; | ||
public requestSendAccessibilityEvent(param0: globalAndroid.view.View, param1: globalAndroid.view.accessibility.AccessibilityEvent): boolean; | ||
public isSmoothScrollingEnabled(): boolean; | ||
public setOverScrollMode(param0: number): void; | ||
public computeHorizontalScrollRange(): number; | ||
public measureChildWithMargins(param0: globalAndroid.view.View, param1: number, param2: number, param3: number, param4: number): void; | ||
public constructor(param0: globalAndroid.content.Context, param1: globalAndroid.util.AttributeSet, param2: number); | ||
public onSaveInstanceState(): globalAndroid.os.Parcelable; | ||
public pageScroll(param0: number): boolean; | ||
public onRestoreInstanceState(param0: globalAndroid.os.Parcelable): void; | ||
public getParent(): globalAndroid.view.ViewParent; | ||
} | ||
export module RadScrollView { | ||
export class SavedState extends globalAndroid.view.View.BaseSavedState { | ||
public static class: java.lang.Class<com.telerik.widget.primitives.panels.RadScrollView.SavedState>; | ||
public xScrollPosition: number; | ||
public yScrollPosition: number; | ||
public static CREATOR: globalAndroid.os.Parcelable.Creator<com.telerik.widget.primitives.panels.RadScrollView.SavedState>; | ||
public writeToParcel(param0: globalAndroid.os.Parcel, param1: number): void; | ||
public describeContents(): number; | ||
public constructor(param0: globalAndroid.os.Parcel); | ||
public constructor(param0: globalAndroid.os.Parcelable); | ||
public toString(): string; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
//Generics information: | ||
//com.telerik.android.common.CollectionChangeListener:1 | ||
//com.telerik.android.common.CollectionChangedEvent:1 | ||
//com.telerik.android.common.DataTuple:3 | ||
//com.telerik.android.common.Function:2 | ||
//com.telerik.android.common.Function2:3 | ||
//com.telerik.android.common.Function2Async:3 | ||
//com.telerik.android.common.ObservableCollection:1 | ||
//com.telerik.android.common.Procedure:1 | ||
//com.telerik.android.common.Procedure2:2 |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
3151375
1586
2