class Relation
Attributes
from_u[RW]
to_u[RW]
type[RW]
Public Class Methods
new(type, from_u, to_u)
click to toggle source
# File lib/use_case_diagram/cu_relations.rb, line 9 def initialize(type, from_u, to_u) @from_u=from_u @to_u=to_u @type=type end