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

org.snapscript.core.function.Function Maven / Gradle / Ivy

package org.snapscript.core.function;

import java.util.List;

import org.snapscript.core.annotation.Annotation;
import org.snapscript.core.attribute.Attribute;

public interface Function extends Attribute {
   Signature getSignature();
   List getAnnotations();
   Invocation getInvocation();
   String getDescription();
   Object getProxy(Class type);
   Object getProxy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy