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)


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

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

Instance Attribute Details

#excerptString (readonly)

Returns the value of attribute excerpt.

Returns:

  • (String)


763
764
765
# File 'sig/types.rbs', line 763

def excerpt
  @excerpt
end

#labelString (readonly)

Returns the value of attribute label.

Returns:

  • (String)


760
761
762
# File 'sig/types.rbs', line 760

def label
  @label
end

#locatorString (readonly)

Returns the value of attribute locator.

Returns:

  • (String)


762
763
764
# File 'sig/types.rbs', line 762

def locator
  @locator
end

#sourceString (readonly)

Returns the value of attribute source.

Returns:

  • (String)


761
762
763
# File 'sig/types.rbs', line 761

def source
  @source
end