$k. SemanticCollection

A collection of topics. Note that this class represents a topic collection folder and should not be confused with $k.SemanticElementCollection, which represents the domain model of a collection view.

Extends

Methods

addElement(newElement)

Adds the element to the collection.

Parameters:
NameTypeDescription
newElement$k.SemanticElement

The element to add to the collection.

Since
  • 5.3.3

deregister()

Deregisters the element. The id will be undefined afterwards. Equivalent to setId(undefined)

See
  • setId

elements() → {Array.<$k.SemanticElement>}

Returns the elements of the collection

Returns:
Type: 
Array.<$k.SemanticElement>

id() → {string|undefined}

Returns the registered ID, or undefined if not registered.

Inherited From
Returns:
Type: 
string | undefined

name() → {string}

Returns the name

Returns:
Type: 
string

parentFolders() → {Array.<$k.Folder>}

Returns the folders that contain this element

Returns:
Type: 
Array.<$k.Folder>

registryType() → {string}

Returns the name of the registry that contains elements of this type

Returns:
Type: 
string

removeAll()

Removes all elements from the collection

Since
  • 5.3.3

removeElement(element)

Removes the element from the collection.

Parameters:
NameTypeDescription
element$k.SemanticElement

The element to remove from the collection.

Since
  • 5.3.3

setId(id, replaceScriptReferencesopt)

Registers the element with the given ID. If the element has already been registered, the current ID will be changed to the new ID. If the given ID is undefined or null, the element will be deregistered.

Parameters:
NameTypeAttributesDefaultDescription
idstring | null

The ID to set

replaceScriptReferencesboolean<optional>
false

True if ID references in scripts should be replaced. Only done when the old and the new ID is not undefined.