Example #1
0
    } // Ende des Konstruktor's.

    /// <summary>
    /// Dies ist der Copy-Konstruktor.
    /// </summary>
    /// <param name="hint">Der zu kopierende Hint.</param>
    public Hint(IHint hint)
    {
        this.l_iX = hint.getX();
        this.l_iY = hint.getY();
        this.l_sValue = hint.getValue();
        this.setMessage(hint.getMessage());
    } // Ende des Konstruktor's.