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

org.unix4j.codegen.def.PackageDef Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.codegen.def;

public class PackageDef extends AbstractElementDef {
	
	public PackageDef(Package pkg) {
		this(pkg.getName());
	}
	public PackageDef(String packageName) {
		this.name = packageName;
		this.path = packageName.replace('.', '/');
	}
	public final String name;
	public final String path;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy