Class: Xberg::Citation

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCitation

Returns a new instance of Citation.

Parameters:

  • label: (String)
  • source: (String)
  • locator: (String)
  • excerpt: (String)


770
# File 'sig/types.rbs', line 770

def initialize: (label: String, source: String, ?locator: String, ?excerpt: String) -> void

Instance Attribute Details

#excerptString (readonly)

Returns the value of attribute excerpt.

Returns:

  • (String)


768
769
770
# File 'sig/types.rbs', line 768

def excerpt
  @excerpt
end

#labelString (readonly)

Returns the value of attribute label.

Returns:

  • (String)


765
766
767
# File 'sig/types.rbs', line 765

def label
  @label
end

#locatorString (readonly)

Returns the value of attribute locator.

Returns:

  • (String)


767
768
769
# File 'sig/types.rbs', line 767

def locator
  @locator
end

#sourceString (readonly)

Returns the value of attribute source.

Returns:

  • (String)


766
767
768
# File 'sig/types.rbs', line 766

def source
  @source
end