class Properties::Property

Attributes

is_collection[R]
kind[R]
name[R]

Public Class Methods

new(name, kind, is_collection) click to toggle source
# File lib/properties.rb, line 7
def initialize name, kind, is_collection
  @name = name
  @kind = kind
  @is_collection = is_collection
end