All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.simulationconstructionset.gui.actions.dialogActions.OpenH264LicenseAction Maven / Gradle / Ivy

There is a newer version: 0.25.2
Show newest version
package us.ihmc.simulationconstructionset.gui.actions.dialogActions;

import java.awt.event.ActionEvent;

import javax.swing.AbstractAction;
import javax.swing.Action;

import us.ihmc.codecs.loader.OpenH264Downloader;

public class OpenH264LicenseAction extends AbstractAction
{
   private static final long serialVersionUID = -4079097951250188360L;

   public OpenH264LicenseAction()
   {
      super("Show OpenH264 License...");

      putValue(Action.LONG_DESCRIPTION, "Display OpenH264 License");
      putValue(Action.SHORT_DESCRIPTION, "OpenH264 License");

   }

   @Override
   public void actionPerformed(ActionEvent e)
   {
      OpenH264Downloader.showAboutCiscoDialog();
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy