view src/viewer_swing/java/com/glavsoft/viewer/swing/LocalMouseCursorShape.java @ 460:c6058c4e2a79

remove debug message
author mir3636
date Mon, 27 Jun 2016 18:07:29 +0900
parents 17b702648079
children
line wrap: on
line source

package com.glavsoft.viewer.swing;

/**
 * @author dime at tightvnc.com
 */
public enum LocalMouseCursorShape {
    DOT("dot"),
    SMALL_DOT("smalldot"),
    SYSTEM_DEFAULT("default"),
    NO_CURSOR("nocursor");

    private String cursorName;

    LocalMouseCursorShape(String name) {
        this.cursorName = name;
    }

    public String getCursorName() {
        return  cursorName;
    }
}