All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.gdela.socomo.composition.Module Maven / Gradle / Ivy

Go to download

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy