Difference between revisions of "SimpleGraph-Excel"

From BITPlan Wiki
Jump to navigation Jump to search
Line 35: Line 35:
 
</uml>
 
</uml>
 
= Example =
 
= Example =
 +
<uml>
 +
hide circle
 +
package Railway {
 +
  class City {
 +
    name
 +
    lat
 +
    lon
 +
  }
 +
 +
  class Station {
 +
    name
 +
    lat
 +
    lon
 +
  }
 +
  class Route {
 +
    linenumber
 +
  }
 +
 +
  class Section {
 +
    id
 +
  }
 +
  Station "1" - "city 1" City
 +
  Route "1" - "to 1" City
 +
  Route "1" - "from 1" City
 +
  Route "1" - "sections n" Section
 +
  Station "1" - "sections n" Section
 +
}
 +
</uml>
  
 
= Links =
 
= Links =

Revision as of 18:50, 30 August 2018