interfaces.IRandomNameGeneratorService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsyntaxtree Show documentation
Show all versions of jsyntaxtree Show documentation
Syntax tree representation of the JASS language
The newest version!
package interfaces;
/**
* Used to generate random and unique variable/function names
*/
public interface IRandomNameGeneratorService {
/**
* Produces the next unique random name
*
* @return Unique random name
*/
String next();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy