AttributeReference constructor

AttributeReference(
  1. String ref
)

Take an attribute reference string and produce an attribute reference.

ref must be a valid attribute reference string.

Implementation

AttributeReference(String ref)
    : valid = _validate(ref),
      redactionName = ref,
      components = UnmodifiableListView(_getComponents(ref));