net.sourceforge.plantuml.dot.GraphvizWindowsLite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.dot;
import java.io.File;
import net.sourceforge.plantuml.style.ISkinParam;
import net.sourceforge.plantuml.windowsdot.WindowsDotArchive;
class GraphvizWindowsLite extends AbstractGraphviz {
// ::remove file when __CORE__
static private File specificDotExe;
@Override
protected boolean findExecutableOnPath() {
return false;
}
@Override
protected File specificDotExe() {
synchronized (GraphvizWindowsLite.class) {
if (specificDotExe == null)
specificDotExe = WindowsDotArchive.getInstance().getWindowsExeLite();
return specificDotExe;
}
}
public boolean graphviz244onWindows() {
return false;
}
GraphvizWindowsLite(ISkinParam skinParam, String dotString, String... type) {
super(skinParam, dotString, type);
}
@Override
protected String getExeName() {
return "dot.exe";
}
}