net.sourceforge.plantuml.asciiart.UmlCharArea 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.util.Collection;
public interface UmlCharArea extends BasicCharArea {
void drawBoxSimple(int x, int y, int width, int height);
void drawBoxSimpleUnicode(int x, int y, int width, int height);
void drawNoteSimple(int x, int y, int width, int height);
void drawNoteSimpleUnicode(int x, int y, int width, int height);
void drawShape(AsciiShape shape, int x, int y);
void drawStringsLRSimple(Collection extends CharSequence> strings, int x, int y);
void drawStringsLRUnicode(Collection extends CharSequence> strings, int x, int y);
}