VirtualKey.java :  » ERP-CRM-Financial » Evaristo-4.0 » com » m16e » tools » vkbd » Java Open Source

Java Open Source » ERP CRM Financial » Evaristo 4.0 
Evaristo 4.0 » com » m16e » tools » vkbd » VirtualKey.java
/*
 * 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;
  }
  
  ////////////////////////////////////////////////////////////

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.