* @param me egéresemény
* */
public void _mouseEntered(MouseEvent me) {
setBackground(new Color(231, 214, 163));
requestFocusInWindow();
Position leftBlackPos = _table.getFirstBlackToLeft(_pos);
Position upBlackPos = _table.getFirstBlackToUp(_pos);
int hSum = _table.getSum(leftBlackPos, ITable.SUM_HORIZONTAL);
int vSum = _table.getSum(upBlackPos, ITable.SUM_VERTICAL);
int hRun = _table.getRunToRight(leftBlackPos);
int vRun = _table.getRunToDown(upBlackPos);
Iterator<String> h1 = _gui.getServer().getHint(hSum, hRun);