class Node

Attributes

id[R]
type[R]

Public Class Methods

new(id, type) click to toggle source
# File lib/NetAnalyzer/nodes.rb, line 3
def initialize(id, type)
        @id = id
        @type = type
end