Skip to content

Latest commit

 

History

History
94 lines (61 loc) · 3.48 KB

README.md

File metadata and controls

94 lines (61 loc) · 3.48 KB

SDMLib

master : Build Status Scrutinizer Code Quality

develop: Build Status Scrutinizer Code Quality

SDMLIB-PM

SDMLIB-PM

Welcome to SDMLib

SDMLib is a lightweight modeling library. SDMLib intentionally comes without any tool or editor.

The idea is that you code your model:

ClassModel model = new ClassModel("org.sdmlib.sample");

Clazz uni = model.createClazz("University");

Clazz student = model.createClazz("Student")
    .withAttribute("studentID", DataType.STRING);

uni.withAssoc(student, "students", Card.MANY, "almaMater", Card.ONE);

model.generate();

By running model.generate() SDMLib will generate source code from your class model. If you extend your model later on and regenerate, the code generation will identify already existing classes and fields and attributes and leave them untouched. Only new elements will be inserted, carefully.

In the example above, the generated code will be placed in package org.sdmlib.sample, which does not need to be pre-existing.

Gradle and Maven

For stable version add to your build.gradle :

repositories {
    jcenter()
}

dependencies {
    compile 'org.sdmlib:SDMLib:1.1.+'
}

or for SNAPSHOT-Builds:

repositories {
	maven {
        url "https://se.cs.uni-kassel.de/artifactory/libs-snapshot-local"
    }
}

dependencies {
    compile 'org.sdmlib:SDMLib:1.1.+'
}

In order to get started, just add the following Maven dependency:

<dependency>
    <groupId>org.sdmlib</groupId>
    <artifactId>SDMLib</artifactId>
    <version>1.1.600</version>
</dependency>

In addition to class models, SDMLib will also support object diagrams, storyboards and model transformations.

Find documentation from the code repository here

In addition to class models, SDMLib will also support object diagrams, story pages and model transformations.

SDMLib comes with [MIT licence]

Have fun

The [SDMLib team]