XLinkArc

trait XLinkArc extends ChildXLink

XLink arc. For example, showing an XLink arc in a presentation link:

XLink arc. For example, showing an XLink arc in a presentation link:

<link:presentationArc xlink:type="arc"
 xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child"
 xlink:from="parentConcept" xlink:to="childConcept" />

The xlink:from and xlink:to attributes point to XLink locators or resources in the same extended link with the corresponding xlink:label attributes.

trait XLinkElem
class Object
trait Matchable
class Any

Value members

Abstract methods

def arcrole: String

Returns the arcrole. This may fail with an exception if the taxonomy is not schema-valid.

Returns the arcrole. This may fail with an exception if the taxonomy is not schema-valid.

If the taxonomy is not known to be schema-valid, use the following code instead:

attributeOption(ENames.XLinkArcroleEName)
def from: String

Returns the XLink "from". This may fail with an exception if the taxonomy is not schema-valid.

Returns the XLink "from". This may fail with an exception if the taxonomy is not schema-valid.

If the taxonomy is not known to be schema-valid, use the following code instead:

attributeOption(ENames.XLinkFromEName)
def to: String

Returns the XLink "to". This may fail with an exception if the taxonomy is not schema-valid.

Returns the XLink "to". This may fail with an exception if the taxonomy is not schema-valid.

If the taxonomy is not known to be schema-valid, use the following code instead:

attributeOption(ENames.XLinkToEName)

Inherited methods

def backingElem: Elem
Inherited from
XLinkElem
def elr: String

Returns the extended link role of the surrounding extended link element. This may fail with an exception if the taxonomy is not schema-valid.

Returns the extended link role of the surrounding extended link element. This may fail with an exception if the taxonomy is not schema-valid.

If the taxonomy is not known to be schema-valid, use the following code instead:

backingElem.parentOption.flatMap(_.attributeOption(ENames.XLinkRoleEName))
Inherited from
ChildXLink
Inherited from
XLinkElem

Returns the underlying parent element. This may fail with an exception if the taxonomy is not schema-valid.

Returns the underlying parent element. This may fail with an exception if the taxonomy is not schema-valid.

If the taxonomy is not known to be schema-valid, use the following code instead:

backingElem.parentOption
Inherited from
ChildXLink
def xlinkAttributes: Map[EName, String]
Inherited from
XLinkElem
def xlinkType: String
Inherited from
XLinkElem