net.sourceforge.plantuml.asciiart.BasicCharArea 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.asciiart;
import java.io.PrintStream;
import java.util.List;
public interface BasicCharArea {
int getWidth();
int getHeight();
void drawChar(char c, int x, int y);
void fillRect(char c, int x, int y, int width, int height);
void drawStringLR(String string, int x, int y);
void drawStringTB(String string, int x, int y);
String getLine(int line);
void print(PrintStream ps);
List getLines();
void drawHLine(char c, int line, int col1, int col2);
void drawHLine(char c, int line, int col1, int col2, char ifFound, char thenUse);
void drawVLine(char c, int col, int line1, int line2);
}