com.googlecode.lanterna.gui2.BasicWindow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lanterna Show documentation
Show all versions of lanterna Show documentation
Java library for creating text-based terminal GUIs
package com.googlecode.lanterna.gui2;
/**
* Simple AbstractWindow implementation that you can use with extending to build a Text GUI window
* @author Martin
*/
public class BasicWindow extends AbstractWindow {
public BasicWindow() {
super();
}
public BasicWindow(String title) {
super(title);
}
}