Skip to content

Commit

Permalink
LizenzAction.java wieder eingebunden, damit das Lizenz-Menü funktioni…
Browse files Browse the repository at this point in the history
…ert (#636)
  • Loading branch information
tobidope authored Feb 2, 2025
1 parent f3818f7 commit c907581
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/de/jost_net/JVerein/gui/action/LizenzAction.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/**********************************************************************
* JVerein - Mitgliederverwaltung und einfache Buchhaltung für Vereine
* Copyright (c) by Heiner Jostkleigrewe
* Copyright (c) 2015 by Thomas Hooge
* Main Project: [email protected] http://www.jverein.de/
* Module Author: [email protected], http://www.hoogi.de/
*
* This file is part of JVerein.
*
* JVerein 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 3 of the License, or
* (at your option) any later version.
*
* JVerein is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
**********************************************************************/
package de.jost_net.JVerein.gui.action;

import de.jost_net.JVerein.gui.view.LizenzView;
import de.willuhn.jameica.gui.Action;
import de.willuhn.jameica.gui.GUI;
import de.willuhn.util.ApplicationException;

public class LizenzAction implements Action
{

/**
* @see de.willuhn.jameica.gui.Action#handleAction(java.lang.Object)
*/
@Override
public void handleAction(Object context) throws ApplicationException
{
GUI.startView(LizenzView.class.getName(), null);
}

}

0 comments on commit c907581

Please sign in to comment.