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

org.drools.rule.builder.dialect.java.javaFunction.mvel Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
package @{package};

@foreach{importEntry : imports}
import @{importEntry};
@end{}

@foreach{importEntry : staticImports}
import static @{importEntry};
@end{}

public class @{className} implements java.io.Externalizable {
    private static final long serialVersionUID  = 510l;
        
    public static @{returnType} @{methodName}(@foreach{type : parameterTypes, name : parameterNames}@{type} @{name}@end{","}) throws Exception {
        @{text}
    }      

    public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException {
    }

    public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundException {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy