![JAR search and dependency download from the Maven repository](/logo.png)
org.snapscript.tree.reference.GenericArgument 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.tree.reference;
import static org.snapscript.core.constraint.Constraint.OBJECT;
import org.snapscript.core.constraint.Constraint;
import org.snapscript.parse.StringToken;
public class GenericArgument {
private final Constraint constraint;
public GenericArgument(StringToken token) {
this(OBJECT, null);
}
public GenericArgument(Constraint constraint) {
this(constraint, null);
}
public GenericArgument(Constraint constraint, StringToken token) {
this.constraint = constraint;
}
public Constraint getConstraint() {
return constraint;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy