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

pl.gdela.socomo.codemap.Origin Maven / Gradle / Ivy

Go to download

Core parts of the tool for visualizing and analyzing source code modularity of a single java project.

There is a newer version: 2.3.1
Show newest version
package pl.gdela.socomo.codemap;

/**
 * The origin of a codemap element, eg. where a given class was defined.
 * If class is defined in different source roots, or in a source root and
 * external library, then the enum value with lowest order takes precedence.
 */
public enum Origin {

	/**
	 * Main source root of the module.
	 */
	MAIN,

	/**
	 * Test source root of the module.
	 */
	TEST,

	/**
	 * Not a part of the module, typically a library that we know about, because
	 * module sources refer to them.
	 */
	EXTERNAL
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy