public class

RenameVideoArchiveDialog

extends StandardDialog
java.lang.Object
   ↳ java.awt.Component
     ↳ java.awt.Container
       ↳ java.awt.Window
         ↳ java.awt.Dialog
           ↳ javax.swing.JDialog
             ↳ vars.shared.ui.dialogs.StandardDialog
               ↳ vars.annotation.ui.dialogs.RenameVideoArchiveDialog

Class Overview

Dialog used for Renaming a VideoArchive. Typical usage is:

 RenameVideoArchiveDialog dialog = new RenameVideoArchiveDialog(frame, toolBelt);
 dialog.getOkayButton().addActionListener(new ActionListener() {
     public void actionPerformed(ActionEvent e) {
         dialog.setVisible(false);
         String newName = dialog.getNewVideoArchiveName();
         // Do something with the new name
     }
 });
 

Summary

[Expand]
Inherited Constants
From class java.awt.Dialog
From class java.awt.Component
From interface java.awt.image.ImageObserver
From interface javax.swing.WindowConstants
[Expand]
Inherited Fields
From class javax.swing.JDialog
Public Constructors
RenameVideoArchiveDialog(Window parent, ToolBelt toolBelt)
Constructs ...
Public Methods
String getNewVideoArchiveName()
This method call opens/creates a videoArchive based on the parameters a user has set in this Dialog.
Protected Methods
void initialize()
[Expand]
Inherited Methods
From class vars.shared.ui.dialogs.StandardDialog
From class javax.swing.JDialog
From class java.awt.Dialog
From class java.awt.Window
From class java.awt.Container
From class java.awt.Component
From class java.lang.Object
From interface java.awt.MenuContainer
From interface java.awt.image.ImageObserver
From interface javax.accessibility.Accessible
From interface javax.swing.RootPaneContainer

Public Constructors

public RenameVideoArchiveDialog (Window parent, ToolBelt toolBelt)

Constructs ...

Public Methods

public String getNewVideoArchiveName ()

This method call opens/creates a videoArchive based on the parameters a user has set in this Dialog. This method is intended to be called from an ActionListener to retrieve the VideoArchiveSet.

Protected Methods

protected void initialize ()