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

org.apache.velocity.app.Velocity Maven / Gradle / Ivy

Go to download

This module create facades for all the APIs (classes, interfaces and annotations) that are use in the test code. The objective is to avoid the needed to download all the framework supported by the static analyzer.

There is a newer version: 1.8.0
Show newest version
package org.apache.velocity.app;

import org.apache.velocity.context.Context;

import java.io.InputStream;
import java.io.Reader;
import java.io.Writer;

public class Velocity {
    public static void init() {
    }

    public static boolean evaluate(Context context, Writer swOut, String logTag, InputStream instream) {
        return false;
    }
    public static boolean evaluate(Context context, Writer swOut, String logTag, Reader reader) {
        return false;
    }
    public static boolean evaluate(Context context, Writer swOut, String logTag, String instring) {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy