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

tech.tablesaw.plotly.components.Component Maven / Gradle / Ivy

There is a newer version: 0.43.1
Show newest version
package tech.tablesaw.plotly.components;

import com.mitchellbosecke.pebble.PebbleEngine;

public abstract class Component {

    protected final PebbleEngine engine = TemplateUtils.getNewEngine();

    public abstract String asJavascript();

    @Override
    public String toString() {
        return asJavascript();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy