UMLG Documentation
Here is a simple uml class diagram.
Here are the generated entities in action.
Company company = new Company();
company.setName("UMLG");
Person person = new Person();
person.setFirstname("Joe");
person.setLastname("Bloggs");
company.getEmployee().add(person);
UMLG.get().commit();
Assert.assertTrue(company.getEmployee().contains(person));
A short introduction to UMLG.
Quickly get a UMLG application up and running with the getting started guide.
An in depth explanation of the entities and the primary UMLG db interface. UMLG In Action.
UMLG's gremlin extension to facilitate accessing properties and association classes.
A UMLG reference manual. Going through all uml class diagram features supported and implemented by UMLG.
An OCL reference document illustrating OCL as supported in UMLG.
Description of UMLG's rest interface.
Description of UMLG's gui.