Class: Xberg::PropertyChange

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePropertyChange

Returns a new instance of PropertyChange.

Parameters:

  • name: (String)
  • from: (String)
  • to: (String)


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

def initialize: (name: String, ?from: String, ?to: String) -> void

Instance Attribute Details

#fromString? (readonly)

Returns the value of attribute from.

Returns:

  • (String, nil)


2191
2192
2193
# File 'sig/types.rbs', line 2191

def from
  @from
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


2190
2191
2192
# File 'sig/types.rbs', line 2190

def name
  @name
end

#toString? (readonly)

Returns the value of attribute to.

Returns:

  • (String, nil)


2192
2193
2194
# File 'sig/types.rbs', line 2192

def to
  @to
end