Class Ribs::RubyValuedProperty
In: lib/ribs/definition.rb
Parent: org.hibernate.mapping.Property

A Hibernate Property that can contain a Ruby value too.

Methods

getRubyValue   new  

Attributes

ruby_value  [RW]  The Ruby class

Public Class methods

Creation

[Source]

     # File lib/ribs/definition.rb, line 125
125:     def initialize(*args)
126:       super
127:     end

Public Instance methods

Implement the interface - return the actual Ruby value

[Source]

     # File lib/ribs/definition.rb, line 130
130:     def getRubyValue
131:       @ruby_value
132:     end

[Validate]