myPackage

A module for a set of dummy classes.

Classes

  • Base: A base-class for dummy applications.

  • Application: A dummy application for demonstration purposes.


Classes

class myPackage.Base[source]

A base-class for dummy applications.

Inheritance

Inheritance diagram of Base

__init__()[source]
Return type:

None

_value: int

An internal value.

property Value: int

Read-only property to return the internal value.

Returns:

Internal value.

Add(value)[source]

Accumulate value to internal value.

Parameters:

value – Value to accumulate.

Return type:

None

class myPackage.Application[source]

A dummy application for demonstration purposes.

Inheritance

Inheritance diagram of Application

Add(value)

Accumulate value to internal value.

Parameters:

value – Value to accumulate.

Return type:

None

property Value: int

Read-only property to return the internal value.

Returns:

Internal value.

__init__()[source]
Return type:

None

_value: int

An internal value.