org.snapscript.core.NameBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
package org.snapscript.core;
public interface NameBuilder {
String createFullName(Class type);
String createShortName(Class type);
String createFullName(String module, String name);
String createArrayName(String module, String name, int size);
String createOuterName(String module, String name);
String createTopName(String type);
String createTopName(String module, String name);
}