CustomProperty

CustomProperty class

Represents identifier information.

class CustomProperty;

Constructors

ConstructorDescription
constructor()Default Constructor.

Properties

PropertyTypeDescription
namestringReturns or sets the name of the object.
valuestringReturns or sets the value of the custom property.

Methods

MethodDescription
getName()@deprecated. Please use the ’name’ property instead. Returns or sets the name of the object.
setName(string)@deprecated. Please use the ’name’ property instead. Returns or sets the name of the object.
getValue()@deprecated. Please use the ‘value’ property instead. Returns or sets the value of the custom property.
setValue(string)@deprecated. Please use the ‘value’ property instead. Returns or sets the value of the custom property.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

name

Returns or sets the name of the object.

name : string;

value

Returns or sets the value of the custom property.

value : string;

getName()

@deprecated. Please use the ’name’ property instead. Returns or sets the name of the object.

getName() : string;

setName(string)

@deprecated. Please use the ’name’ property instead. Returns or sets the name of the object.

setName(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

getValue()

@deprecated. Please use the ‘value’ property instead. Returns or sets the value of the custom property.

getValue() : string;

setValue(string)

@deprecated. Please use the ‘value’ property instead. Returns or sets the value of the custom property.

setValue(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;