new Child()

This is the summary of the MyApi child class, test markdown.

Details

Members


<protected> protectedMember :string

I'm a protected member of the class.

Details
string

"I'm a protected member."


publicMember :string

I'm a member of the class.

Details
string

"I'm an instance member."


<private> _privateMember :string

I'm a private member of the class.

Details
string

"I'm a private member."

Methods


anotherMethod( value, obj [, ...objN ] ) → {Object}

This is a another test instance method of the MyApi child class, test markdown.

Description

This method overrides the MyApi.Class#anotherMethod and should remove the exception documentation as it no longer applies. The event should also be updated to reflect it is raised by this class and not the inherited one.

Parameters
Name Type Attributes Description
value *

Any value, test markdown

obj Object

The first object of what could be many, test markdown

objN Object <optional>
<repeatable>

Any additional objects, test markdown

Returns

The combination of all the objects, test markdown.

Fires

This is an event raised by this class, it's documentation appears on this page as the event is specified as an inner member the class by using the tilde (~) scope.

Details

testMethod( value, obj [, ...objN ] ) → {Object}

This is a test instance method of the MyApi test class, test markdown.

Description

This method is not overridden in the MyApi.Child class but is simply inherited.

Parameters
Name Type Attributes Description
value *

Any value, test markdown

obj Object

The first object of what could be many, test markdown

objN Object <optional>
<repeatable>

Any additional objects, test markdown

Returns

The combination of all the objects, test markdown.

Fires

This is an event raised by this class, it's documentation appears on this page as the event is specified as an inner member the class by using the tilde (~) scope.

Throws

This is thrown when some condition fails within this method.

Details

Events


"another.my-api"

This is an event raised by this class, it's documentation appears on this page as the event is specified as an inner member the class by using the tilde (~) scope.

Parameters
Name Type Description
e Event

The event object.

custom *

Some custom parameter passed to any listeners.

Details