net.digger:jscreen-parent

Parent pom providing dependency and plugin management for JScreen modules.

License

License

Categories

Categories

Net
GroupId

GroupId

net.digger
ArtifactId

ArtifactId

jscreen-parent
Last Version

Last Version

1.2.1
Release Date

Release Date

Type

Type

pom
Description

Description

net.digger:jscreen-parent
Parent pom providing dependency and plugin management for JScreen modules.
Project URL

Project URL

https://github.com/diggernet/JScreen
Source Code Management

Source Code Management

https://github.com/diggernet/JScreen/tree/develop

Download jscreen-parent

Filename Size
jscreen-parent-1.2.1.pom 4 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/net.digger/jscreen-parent/ -->
<dependency>
    <groupId>net.digger</groupId>
    <artifactId>jscreen-parent</artifactId>
    <version>1.2.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/net.digger/jscreen-parent/
implementation 'net.digger:jscreen-parent:1.2.1'
// https://jarcasting.com/artifacts/net.digger/jscreen-parent/
implementation ("net.digger:jscreen-parent:1.2.1")
'net.digger:jscreen-parent:pom:1.2.1'
<dependency org="net.digger" name="jscreen-parent" rev="1.2.1">
  <artifact name="jscreen-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='net.digger', module='jscreen-parent', version='1.2.1')
)
libraryDependencies += "net.digger" % "jscreen-parent" % "1.2.1"
[net.digger/jscreen-parent "1.2.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • core
  • fonts/IBM
  • fonts/CBM
  • demo

JScreen

JScreen is a Java Swing component which provides a text screen display.

It was conceived to enable porting old DOS programs to a modern cross-platform environment, while retaining their original look and feel. But it was also designed to enable non-PC text modes, given suitable fonts and character mapping.

Hello World

Getting started is this simple:

import net.digger.ui.screen.JScreen;

public class HelloWorld {
	public static void main(String[] args) {
		JScreen screen = JScreen.createJScreenWindow();
		screen.print("Hello world.");
	}
}

The sample programs in JScreen-Demo show off some more of what JScreen can do. And, of course, the source is available to learn every nuance.

Modules

JScreen has the following modules:

License

JScreen is provided under the terms of the GNU Lesser General Public License v3.0 (LGPLv3).

Versions

Version
1.2.1
1.2.0