/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.m16e.tools.vkbd;
import java.awt.event.KeyEvent;
/**
*
* VirtualKey.java
*
* @author carlos
*/
////////////////////////////////////////////////////////////
public class VirtualKey
{
int key = 0;
String text = "";
int width = 1;
int height = 1;
////////////////////////////////////////////////////////////
public VirtualKey( int key, String text, int width, int height )
{
this.key = key;
this.text = text;
this.width = width;
this.height = height;
}
////////////////////////////////////////////////////////////
}
|