com.huguesjohnson.debigulator
Class DebigulatorConstants

java.lang.Object
  extended by com.huguesjohnson.debigulator.DebigulatorConstants

public abstract class DebigulatorConstants
extends java.lang.Object

Contains constants used by the Debigulator application.


Field Summary
static java.lang.String ACTION_ADDALL
          Action to add all files to the list to archive.
static java.lang.String ACTION_ADDSELECTED
          Action to add selected files to the list to archive.
static java.lang.String ACTION_ADVANCEDSETTINGS
          Action to display the advanced settings dialog.
static java.lang.String ACTION_CANCEL
          Action when cancel button is pressed on a dialog.
static java.lang.String ACTION_CREATEARCHIVES
          Action to begin the archive operation.
static java.lang.String ACTION_EXIT
          Action to exit the application.
static java.lang.String ACTION_HELPABOUT
          Action to display the about dialog.
static java.lang.String ACTION_HELPAPI
          Action to open the API documentation.
static java.lang.String ACTION_HELPINDEX
          Action to open the help index.
static java.lang.String ACTION_NEWSESSION
          Action to create a new session.
static java.lang.String ACTION_OK
          Action when OK button is pressed on a dialog.
static java.lang.String ACTION_OPENSESSION
          public final static String ACTION_OPENSESSION="Open Session..";
static java.lang.String ACTION_REMOVEALL
          Action to remove all files from the list to archive.
static java.lang.String ACTION_REMOVESELECTED
          Action to remove selected files from the list to archive.
static java.lang.String ACTION_SAVESESSION
          Action to save the current session.
static java.lang.String ACTION_SAVESESSIONAS
          Action to save the session as.
static boolean DEFAULT_AUTOSAVE
          Default autosave value.
static java.lang.String DEFAULT_SESSION_NAME
          Default session name.
static boolean DEFAULT_SYNC_TO_SOURCE_DIR
          Default syncToSourceDir value.
static java.lang.String ERROR_LOAD
          Message indicating error has occured loading the session.
static java.lang.String ERROR_SAVE
          Message indicating error has occured saving the session.
static int FILE_BROWSER_HEIGHT
          Default height of the file browser component.
static int FILE_BROWSER_WIDTH
          Default width of the file browser component.
static java.lang.String MESSAGE_ABOUT
          Message that displays on the about menu.
static int OUTPUT_DIRECTORY_BROWSER_HEIGHT
          Default height of the output directory component.
static int OUTPUT_DIRECTORY_BROWSER_WIDTH
          Default width of the output directory component.
static java.lang.String PROGRAM_TITLE
          Title for the main program frame.
static java.lang.String STATUS_ARCHIVE_COMPLETE
          Status mesage indicating archiving is complete.
static java.lang.String STATUS_LOADED
          Status mesage indicating session has been loaded.
static java.lang.String STATUS_LOADING
          Status mesage indicating session is being loaded.
static java.lang.String STATUS_SAVED
          Status mesage indicating session has been saved.
static java.lang.String STATUS_SAVING
          Status mesage indicating session is being saved.
 
Constructor Summary
DebigulatorConstants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MESSAGE_ABOUT

public static final java.lang.String MESSAGE_ABOUT
Message that displays on the about menu.

MESSAGE_ABOUT="Debigulator, a batch compression program\n(c) 2003-2007 Hugues Johnson\nhttp://www.huguesjohnson.com/";

See Also:
Constant Field Values

STATUS_SAVING

public static final java.lang.String STATUS_SAVING
Status mesage indicating session is being saved. public final static String STATUS_SAVING="Saving session..";

See Also:
Constant Field Values

STATUS_SAVED

public static final java.lang.String STATUS_SAVED
Status mesage indicating session has been saved. public final static String STATUS_SAVED="Saved session";

See Also:
Constant Field Values

STATUS_LOADING

public static final java.lang.String STATUS_LOADING
Status mesage indicating session is being loaded. public final static String STATUS_LOADING="Loading session..";

See Also:
Constant Field Values

STATUS_LOADED

public static final java.lang.String STATUS_LOADED
Status mesage indicating session has been loaded. public final static String STATUS_LOADED="Loaded session";

See Also:
Constant Field Values

STATUS_ARCHIVE_COMPLETE

public static final java.lang.String STATUS_ARCHIVE_COMPLETE
Status mesage indicating archiving is complete. public final static String STATUS_ARCHIVE_COMPLETE="Archive operation completed";

See Also:
Constant Field Values

ERROR_SAVE

public static final java.lang.String ERROR_SAVE
Message indicating error has occured saving the session. public final static String ERROR_SAVE="Error saving session";

See Also:
Constant Field Values

ERROR_LOAD

public static final java.lang.String ERROR_LOAD
Message indicating error has occured loading the session. public final static String ERROR_LOAD="Error loading session";

See Also:
Constant Field Values

PROGRAM_TITLE

public static final java.lang.String PROGRAM_TITLE
Title for the main program frame. public final static String PROGRAM_TITLE="Debigulator 1.1";

See Also:
Constant Field Values

OUTPUT_DIRECTORY_BROWSER_HEIGHT

public static final int OUTPUT_DIRECTORY_BROWSER_HEIGHT
Default height of the output directory component. public final static int OUTPUT_DIRECTORY_BROWSER_HEIGHT=140;

See Also:
Constant Field Values

OUTPUT_DIRECTORY_BROWSER_WIDTH

public static final int OUTPUT_DIRECTORY_BROWSER_WIDTH
Default width of the output directory component. public final static int OUTPUT_DIRECTORY_BROWSER_WIDTH=400;

See Also:
Constant Field Values

FILE_BROWSER_HEIGHT

public static final int FILE_BROWSER_HEIGHT
Default height of the file browser component. FILE_BROWSER_HEIGHT=200;

See Also:
Constant Field Values

FILE_BROWSER_WIDTH

public static final int FILE_BROWSER_WIDTH
Default width of the file browser component. public final static int FILE_BROWSER_WIDTH=240;

See Also:
Constant Field Values

ACTION_NEWSESSION

public static final java.lang.String ACTION_NEWSESSION
Action to create a new session. public final static String ACTION_NEWSESSION="New Session";

See Also:
Constant Field Values

ACTION_OPENSESSION

public static final java.lang.String ACTION_OPENSESSION
public final static String ACTION_OPENSESSION="Open Session..";

See Also:
Constant Field Values

ACTION_SAVESESSION

public static final java.lang.String ACTION_SAVESESSION
Action to save the current session. public final static String ACTION_SAVESESSION="Save Session";

See Also:
Constant Field Values

ACTION_SAVESESSIONAS

public static final java.lang.String ACTION_SAVESESSIONAS
Action to save the session as. public final static String ACTION_SAVESESSIONAS="Save Session As..";

See Also:
Constant Field Values

ACTION_CREATEARCHIVES

public static final java.lang.String ACTION_CREATEARCHIVES
Action to begin the archive operation. public final static String ACTION_CREATEARCHIVES="Create Archives..";

See Also:
Constant Field Values

ACTION_ADVANCEDSETTINGS

public static final java.lang.String ACTION_ADVANCEDSETTINGS
Action to display the advanced settings dialog. public final static String ACTION_ADVANCEDSETTINGS="Advanced Settings..";

See Also:
Constant Field Values

ACTION_EXIT

public static final java.lang.String ACTION_EXIT
Action to exit the application. public final static String ACTION_EXIT="Exit";

See Also:
Constant Field Values

ACTION_HELPINDEX

public static final java.lang.String ACTION_HELPINDEX
Action to open the help index. public final static String ACTION_HELPINDEX="Index..";

See Also:
Constant Field Values

ACTION_HELPAPI

public static final java.lang.String ACTION_HELPAPI
Action to open the API documentation. public final static String ACTION_HELPAPI="API Reference..";

See Also:
Constant Field Values

ACTION_HELPABOUT

public static final java.lang.String ACTION_HELPABOUT
Action to display the about dialog. public final static String ACTION_HELPABOUT="About..";

See Also:
Constant Field Values

ACTION_ADDSELECTED

public static final java.lang.String ACTION_ADDSELECTED
Action to add selected files to the list to archive. public final static String ACTION_ADDSELECTED="Add Selected";

See Also:
Constant Field Values

ACTION_ADDALL

public static final java.lang.String ACTION_ADDALL
Action to add all files to the list to archive. public final static String ACTION_ADDALL="Add All";

See Also:
Constant Field Values

ACTION_REMOVESELECTED

public static final java.lang.String ACTION_REMOVESELECTED
Action to remove selected files from the list to archive. public final static String ACTION_REMOVESELECTED="Remove Selected";

See Also:
Constant Field Values

ACTION_REMOVEALL

public static final java.lang.String ACTION_REMOVEALL
Action to remove all files from the list to archive. public final static String ACTION_REMOVEALL="Remove All";

See Also:
Constant Field Values

ACTION_OK

public static final java.lang.String ACTION_OK
Action when OK button is pressed on a dialog. public final static String ACTION_OK="OK";

See Also:
Constant Field Values

ACTION_CANCEL

public static final java.lang.String ACTION_CANCEL
Action when cancel button is pressed on a dialog. public final static String ACTION_CANCEL="Cancel";

See Also:
Constant Field Values

DEFAULT_SESSION_NAME

public static final java.lang.String DEFAULT_SESSION_NAME
Default session name. public final static String DEFAULT_SESSION_NAME="New.session";

See Also:
Constant Field Values

DEFAULT_AUTOSAVE

public static final boolean DEFAULT_AUTOSAVE
Default autosave value. public final static boolean DEFAULT_AUTOSAVE=true;

See Also:
Constant Field Values

DEFAULT_SYNC_TO_SOURCE_DIR

public static final boolean DEFAULT_SYNC_TO_SOURCE_DIR
Default syncToSourceDir value. public final static boolean DEFAULT_SYNC_TO_SOURCE_DIR=true;

See Also:
Constant Field Values
Constructor Detail

DebigulatorConstants

public DebigulatorConstants()


Copyright © 2000-2007 Hugues Johnson