Example usage for com.badlogic.gdx.scenes.scene2d.ui Widget Widget

List of usage examples for com.badlogic.gdx.scenes.scene2d.ui Widget Widget

Introduction

In this page you can find the example usage for com.badlogic.gdx.scenes.scene2d.ui Widget Widget.

Prototype

Widget

Source Link

Usage

From source file:jp.gr.java_conf.kgd.example.blog.crossgenerics.WidgetExample.java

License:Open Source License

public static void main(String[] args) {
    Widget widget = new Widget();

    WidgetGroup widgetGroup = new WidgetGroup();

    // ?????/*w w w .ja v a 2s. c om*/
    doSomething1(widget);
    doSomething1(widgetGroup);

    // ??????????????????
    doSomething2(widget, widget);
    doSomething2(widgetGroup, widgetGroup);
    // ??????????
}