es.gob.afirma.standalone.ui.EditorFocusManagerAction Maven / Gradle / Ivy
/* Copyright (C) 2011 [Gobierno de Espana]
* This file is part of "Cliente @Firma".
* "Cliente @Firma" is free software; you can redistribute it and/or modify it under the terms of:
* - the GNU General Public License as published by the Free Software Foundation;
* either version 2 of the License, or (at your option) any later version.
* - or The European Software License; either version 1.1 or (at your option) any later version.
* You may contact the copyright holder at: [email protected]
*/
package es.gob.afirma.standalone.ui;
import javax.swing.event.HyperlinkEvent;
/** Define los requerimientos de las clases con las tareas a hacer en caso de acción sobre
* hipervínculos.
* @author Tomás García-Merás. */
public interface EditorFocusManagerAction {
/** Acción a realizar en la apertura de un hipervínculo.
* @param he Evento de hipervínculo.
* @param linkIndex Índice del enlace pulsado. */
void openHyperLink(HyperlinkEvent he, int linkIndex);
}