pl.gdela.socomo.composition.Module Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of socomo-core Show documentation
Show all versions of socomo-core Show documentation
Core parts of the tool for visualizing and analyzing source code modularity of a java project.
The newest version!
package pl.gdela.socomo.composition;
/**
* A module understood as a lump of java source codes build together. For example a maven module with your code.
*/
public class Module {
public final String name;
public Module(String name) {
this.name = name;
}
}