libs/sensorml/src/lib/model/sml/ConnectionList.ts
Properties |
Methods |
connections |
Type : Connection[]
|
Default value : []
|
Decorators :
@DisplayName('Connections')
|
extension |
Type : any[]
|
Decorators :
@DisplayName('Extension')
|
Inherited from
AbstractSWE
|
Defined in
AbstractSWE:12
|
Extension slot for future extensions to this standard. |
id |
Type : string
|
Decorators :
@DisplayName('Id')
|
Inherited from
AbstractSWE
|
Defined in
AbstractSWE:7
|
toString |
toString()
|
Returns :
string
|
toString |
toString()
|
Inherited from
AbstractSWE
|
Defined in
AbstractSWE:14
|
Returns :
string
|
import { AbstractSWE } from '../swe/AbstractSWE';
import { Connection } from './Connection';
import { DisplayName } from '../../common/decorators/DisplayName';
export class ConnectionList extends AbstractSWE {
@DisplayName('Connections')
connections: Connection[] = [];
toString() {
return 'Connection list';
}
}