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)


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

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

Instance Attribute Details

#excerptString (readonly)

Returns the value of attribute excerpt.

Returns:

  • (String)


733
734
735
# File 'sig/types.rbs', line 733

def excerpt
  @excerpt
end

#labelString (readonly)

Returns the value of attribute label.

Returns:

  • (String)


730
731
732
# File 'sig/types.rbs', line 730

def label
  @label
end

#locatorString (readonly)

Returns the value of attribute locator.

Returns:

  • (String)


732
733
734
# File 'sig/types.rbs', line 732

def locator
  @locator
end

#sourceString (readonly)

Returns the value of attribute source.

Returns:

  • (String)


731
732
733
# File 'sig/types.rbs', line 731

def source
  @source
end