パッケージ com.jme3.app

The com.jme3.application provides a toolset for jME3 applications to interact with various components of the engine.

参照先:
          説明

クラスの概要
Application The Application class represents an instance of a real-time 3D rendering jME application.
AppTask<V> AppTask is used in AppTaskQueue to manage tasks that have yet to be accomplished.
SimpleApplication SimpleApplication extends the Application class to provide default functionality like a first-person camera, and an accessible root node that is updated and rendered regularly.
StatsView The StatsView provides a heads-up display (HUD) of various statistics of rendering.
 

パッケージ com.jme3.app の説明

The com.jme3.application provides a toolset for jME3 applications to interact with various components of the engine. Typically, the Application class will be extended and the update() method implemented to provide functionality for the main loop.

An Application will typically provide the following services:

Usage

An example use of the Application class is as follows

public class ExampleUse extends Application {

private Node rootNode = new Node("Root Node");

public static void main(String[] args){
ExampleUse app = new ExampleUse();
app.start();
}