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

tutorial.support.sets.TutorialSet Maven / Gradle / Ivy

The newest version!
package tutorial.support.sets;


public class TutorialSet {
	private Class[] children;
	
	public TutorialSet( Class... children ){
		this.children = children;
	}
	
	public Class[] getChildren(){
		return children;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy