Draw on the right, write (Umple) model code on the left. Analyse models and generate code. This tool stores your data in cookies and on a server. I understand. Click to learn about privacy. Download Donate For help: User manual Ask questions Report issue
// When the mutiplicity is shown as two integers // separated by .. then the first integer is the // lower bound, and the second integer is the // upper bound. // // Here, at one end of the association // the lower bound is 0..1 (which means 'optional' // and at the other end of the association // the lower bound is 3 and the upper bound is 5 class D { 0..1 -- 3..5 E; } class E{} // @@@skipcppcompile