A B C D E F G H I J L M N O P R S T U V W X Z _

A

AbstractTask - Class in Task
AbstractTask is a super class that encapsulates some common functionality between various types of tasks: SimpleTask NetworkTask RecurringNetworkTask
AbstractTask() - Constructor for class Task.AbstractTask
 
AbstractTask.PropertyNames - Enum in Task
enumeration that holds list of properties that you can attach property change listeners for, right now there's only one, but you can add more in the future.
AbstractTask.State - Enum in Task
List of all the possible states that any kind of Task (Network, non network, etc) may have.
AbstractTask.Type - Enum in Task
identifies the type of the task
actionPerformed(ActionEvent) - Method in class org.swixml.contrib.JAnimatedButton
 
add(Component) - Method in class org.swixml.contrib.JMenuButton
 
add(Component) - Method in class org.swixml.contrib.JSimpleMenuButton
 
addListener(ListenerType) - Method in class Task.Support.EnhancedListeners.EnhancedListenerManager
 
addNotify() - Method in class org.swixml.contrib.gmap.GoogleMapPanel
 
addNotify() - Method in class org.swixml.contrib.JAnimatedButton
 
addNotify() - Method in class org.swixml.contrib.JMenuButton
 
addNotify() - Method in class org.swixml.contrib.JSimpleMenuButton
 
addNotify() - Method in class org.swixml.contrib.RSyntaxTextAreaEx
 
addRecieveStatusListener(PropertyChangeListener) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
The property change event that's fired to the listener has the following parts: public void propertyChange(PropertyChangeEvent evt) { String type = evt.getPropertyName(); String progressStr = evt.getOldValue().toString(); int progress = Integer.parseInt(progressStr); String msg = evt.getNewValue().toString(); }
addSendStatusListener(PropertyChangeListener) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
The property change event that's fired to the listener has the following parts: public void propertyChange(PropertyChangeEvent evt) { String type = evt.getPropertyName(); String progressStr = evt.getOldValue().toString(); int progress = Integer.parseInt(progressStr); String msg = evt.getNewValue().toString(); }
addStatusListener(PropertyChangeListener) - Method in class Task.AbstractTask
PropertyChangeEvent.getNewValue() contains the status message.
addToSystemTray(TrayIcon) - Static method in class Task.Support.GUISupport.GUIUtils
 
addUnderlyingIOStreamInterruptedOrClosed(PropertyChangeListener) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
The property change event that's fired to the listener has the following parts: public void propertyChange(PropertyChangeEvent evt) { String type = evt.getPropertyName(); }
alpha(float) - Method in enum Task.Support.GUISupport.Colors
 
alpha(Color, float) - Static method in enum Task.Support.GUISupport.Colors
 
append(byte[], int, int) - Method in class Task.Support.CoreSupport.ByteBuffer
 
append(byte[]) - Method in class Task.Support.CoreSupport.ByteBuffer
 
append(ByteBuffer) - Method in class Task.Support.CoreSupport.ByteBuffer
 
applyBoldTag(String) - Static method in class Task.Support.GUISupport.GUIUtils
 
applyCenterTag(String) - Static method in class Task.Support.GUISupport.GUIUtils
 
applyDesktopAASettings(Graphics2D) - Static method in class Task.Support.GUISupport.DrawingUtils
Applies the Desktop Anti Aliasing settings to the given Graphics2D object.
applyFontColorTag(String, Colors) - Static method in class Task.Support.GUISupport.GUIUtils
 
applyFontColorTag(String) - Static method in class Task.Support.GUISupport.GUIUtils
 
applyItalicTag(String) - Static method in class Task.Support.GUISupport.GUIUtils
 
applySmoothDrawingSettings(Graphics2D) - Static method in class Task.Support.GUISupport.DrawingUtils
Applies AA settings to the Graphics2D context for smoothing out drawing.
applyUnderlineTag(String) - Static method in class Task.Support.GUISupport.GUIUtils
 
arrayCopy(byte[], int, byte[], int, int) - Method in class Task.Support.CoreSupport.ByteBuffer
 
arrayToString(Object[]) - Static method in class Task.Support.CoreSupport.Utils
 
ASCII - Static variable in interface Task.Support.CoreSupport.ConstantsIF
 
assertInEDT() - Static method in class Task.Support.GUISupport.ThreadUtils
 
autoShutdownOn(AutoShutdownSignals) - Method in class Task.Manager.TaskManager
stops any registered tasks that have an AutoShutdownSignals policy that matches what's in shutdown.
AutoShutdownSignals - Enum in Task
identifies the AutoShutdown policy for a task.

B

beforeStart(AbstractTask) - Method in class Task.SimpleTaskHandler
this method is called before the background thread is started. good place to do prep work if any needs to be done.
beforeStart(AbstractTask) - Method in interface Task.SimpleTaskHandlerIF
this method is called before the background thread is started. good place to do prep work if any needs to be done.
BINARY_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
BitRegister - Class in Task.Support.CoreSupport
BitRegister is a boolean that can be made final AND still modified.
BitRegister(boolean) - Constructor for class Task.Support.CoreSupport.BitRegister
 
buffer - Variable in class Task.Support.CoreSupport.ZipObject
Internal byteArray buffer for storing the compressed Serializable obj
BUFFER_SIZE - Static variable in class Task.Support.CoreSupport.ByteBuffer
 
bufferedImageCache - Static variable in class Task.Support.GUISupport.ImageUtils
 
bufferedImageCacheLock - Static variable in class Task.Support.GUISupport.ImageUtils
 
buildUri(String, HashMap<String, String>) - Static method in class Task.Support.CoreSupport.Utils
 
ByteBuffer - Class in Task.Support.CoreSupport
ByteBuffer is a container for bytes.
ByteBuffer() - Constructor for class Task.Support.CoreSupport.ByteBuffer
 
ByteBuffer(byte[]) - Constructor for class Task.Support.CoreSupport.ByteBuffer
 
ByteBuffer(ByteBuffer) - Constructor for class Task.Support.CoreSupport.ByteBuffer
 
ByteBuffer(InputStream) - Constructor for class Task.Support.CoreSupport.ByteBuffer
this method does not close the InputStream.
byteRay - Variable in class Task.Support.CoreSupport.ByteBuffer
 

C

cancel() - Method in class Task.AbstractTask
This method causes the cancel() method to be called on the underlying SwingWorker object (and thread).
cancel() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
Call this method to interrupt the underlying IO stream.
cancel() - Method in interface Task.ProgressMonitor.UIHookIF
allows the UI to cancel IO operations. once called this bit is set, and all subsequent IO ops will be cancelled.
cancelled(long, AbstractTask) - Method in class Task.SimpleTaskHandler
This is called after started(). it signifies that the task was cancelled by cancel() being called on it's SwingWorker thread.
cancelled(long, AbstractTask) - Method in interface Task.SimpleTaskHandlerIF
This is called after started(). it signifies that the task was cancelled by cancel() being called on it's SwingWorker thread.
CENTER_KEY - Static variable in class org.swixml.contrib.gmap.MapLookup
 
centerOnScreen(JFrame) - Static method in class Task.Support.GUISupport.GUIUtils
 
clear() - Method in class Task.Support.CoreSupport.BitRegister
 
clear() - Method in class Task.Support.CoreSupport.ByteBuffer
 
clearAllStatusListeners() - Method in class Task.AbstractTask
 
clearAllStatusListeners() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
this runs in the EDT. why?
close() - Method in class Task.ProgressMonitor.InputStreamUIHookSupport
Overrides FilterInputStream.closeInUI to closeInUI the progress monitor as well as the stream.
close() - Method in interface Task.ProgressMonitor.UIHookIF
this is called when the underlying IO stream is closed, a signal that the IO operation has ended
closeInUI() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
this is called in EDT, in your code. this is called if the underlying IO stream was closed for some reason.
color() - Method in enum Task.Support.GUISupport.Colors
 
color(float) - Method in enum Task.Support.GUISupport.Colors
 
Colors - Enum in Task.Support.GUISupport
Colors is a utility class that makes it easier to work with colors.
concatenateFilePath(String, String) - Static method in class Task.Support.CoreSupport.Utils
 
ConstantsIF - Interface in Task.Support.CoreSupport
ConstantsIF holds constants that are relevant to the whole plugin package.
copyObject(Type) - Static method in class Task.Support.CoreSupport.Utils
copies the object and returns it
create(String, int, float) - Static method in class Task.Support.GUISupport.FontUtils
check to see if the entire name + style + size is in the cache, if not: 1. see if you have to load the name + style from the JAR file (cache this in FONT_FILES_IN_JAR) 2. derive this loaded font, and save that to the FONT_CACHE
createBufferedImage(Image) - Method in class Task.Support.GUISupport.ImageUtils
Utility method provided to convert Images to BufferedImages.
createCompatibleImage(int, int, boolean) - Static method in class Task.Support.GUISupport.ImageUtils
convenience method for creating an opaque or transparent compatible BufferedImage
createCompatibleImage(int, int, int) - Static method in class Task.Support.GUISupport.ImageUtils
convenience constructor for creating a compatible BufferedImage given the Transparency setting
createFastResizedCopy(BufferedImage, int, int, boolean) - Static method in class Task.Support.GUISupport.ImageUtils
Resizes the originalImage to fit the scaled Width and Height.
createFDImage() - Static method in class Task.Support.GUISupport.GUIUtils
 
createHighResThumbnail(BufferedImage, int, int, boolean) - Static method in class Task.Support.GUISupport.ImageUtils
This creates a high quality thumbnail of the given image.
createInEDT(Class<ClassType>) - Static method in class Task.Support.CoreSupport.Utils
given a class, it creates an instance of it in the EDT
CSS_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 

D

decodeBufferedImage(ZipObject<ByteBuffer>) - Static method in class Task.Support.GUISupport.ImageUtils
Decodes the PNG-encoded-ByteBuffer into a BufferedImage.
DEFAULT_CHAR_ENCODING - Static variable in interface Task.Support.CoreSupport.ConstantsIF
 
delim - Variable in class Task.Support.CoreSupport.TheStringTokenizer
 
delim - Variable in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
 
doFireEvent(EnhancedListenerType, EventType) - Method in interface Task.Support.EnhancedListeners.ExecutionDelegate
this is a call back method. in your implementation, actually perform the tasks that you need in order to fire the event on the listener.
doInBackground(Future<ReturnValueType>, SwingUIHookAdapter) - Method in interface Task.TaskExecutorIF
This method is executed in the background thread.
doShutdown() - Method in class Task.AbstractTask
subclass should implement this method as is appropriate for them. this is called when the task is stopped, based on the AutoShutdownSignals policy
doShutdown() - Method in class Task.NetworkTask
subclass should implement this method as is appropriate for them. this is called when the task is stopped, based on the AutoShutdownSignals policy
doShutdown() - Method in class Task.RecurringNetworkTask
subclass should implement this method as is appropriate for them. this is called when the task is stopped, based on the AutoShutdownSignals policy
doShutdown() - Method in class Task.SimpleTask
subclass should implement this method as is appropriate for them. this is called when the task is stopped, based on the AutoShutdownSignals policy
drawBorderedTranslucentImage(Graphics, int, int, boolean, Color[]) - Static method in class Task.Support.GUISupport.DrawingUtils
Given a BufferedImage, this method returns a rounded, gradient, translucency effect on top of it, and retursn it as a new BufferedImage.
DrawingUtils - Class in Task.Support.GUISupport
DrawingUtils is a utility class that helps with drawing operations - reflections and other effects.
DrawingUtils() - Constructor for class Task.Support.GUISupport.DrawingUtils
 
drawSemiTransparentShade(Graphics, int, int, Color[]) - Static method in class Task.Support.GUISupport.DrawingUtils
 
drawShade4Stops(Graphics, int, int, Color[], float) - Static method in class Task.Support.GUISupport.DrawingUtils
 
drawShadeFast(Graphics, int, int, Color[], float) - Static method in class Task.Support.GUISupport.DrawingUtils
 
drawShadeNormal(Graphics, int, int, Color[], float) - Static method in class Task.Support.GUISupport.DrawingUtils
 
dumpFontCache() - Static method in class Task.Support.GUISupport.FontUtils
 

E

enableDynamicLayout() - Static method in class Task.Support.GUISupport.GUIUtils
 
enableRecieveStatusNotification(boolean) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
you can put this UIHook in silent mode - will not update UI with status updates on RECV
enableSendStatusNotification(boolean) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
you can put this UIHook in silent mode - will not update UI with status updates on SEND
enc - Variable in class Task.Support.CoreSupport.ByteBuffer
 
encloseWithTag(String, String) - Static method in class Task.Support.GUISupport.GUIUtils
 
encloseWithTag(String, String, String) - Static method in class Task.Support.GUISupport.GUIUtils
 
encodeBufferedImage(BufferedImage) - Static method in class Task.Support.GUISupport.ImageUtils
Encodes the BufferedImage into a PNG file and writes that to a ByteBuffer.
EnhancedListener - Class in Task.Support.EnhancedListeners
EnhancedListener is a base class that makes it easy to create event listeners that have an "autoremove" flag set on them.
EnhancedListener() - Constructor for class Task.Support.EnhancedListeners.EnhancedListener
 
EnhancedListener.EDTPolicy - Enum in Task.Support.EnhancedListeners
 
EnhancedListenerManager<ListenerType extends EnhancedListener> - Class in Task.Support.EnhancedListeners
AutoPruningListenerManager, where ListenerType is the type of listener that this manager handles.
EnhancedListenerManager() - Constructor for class Task.Support.EnhancedListeners.EnhancedListenerManager
 
error(Throwable, long, AbstractTask) - Method in class Task.SimpleTaskHandler
this is called after stopped(). it signifies failure of task execution.
error(Throwable, long, AbstractTask) - Method in interface Task.SimpleTaskHandlerIF
this is called after stopped(). it signifies failure of task execution.
execute() - Method in class Task.AbstractTask
 
execute() - Method in class Task.NetworkTask
For each invocation, this method creates a new SwingWorker object to perform a background task, and then it uses the provided TasKHandler to notify you of the changes to the task's lifecycle.
execute() - Method in class Task.SimpleTask
For each invocation, this method creates a new SwingWorker object to perform a background task, and then it uses the provided TasKHandler to notify you of the changes to the task's lifecycle.
executeAndWait() - Method in class Task.NetworkTask
Support for RecurringNetworkTask.
executeLaterInEDT(Runnable) - Static method in class Task.Support.GUISupport.ThreadUtils
 
executionAttemptAfterShutdown(String, AbstractTask) - Static method in class Task.TaskException
 
ExecutionDelegate<EventType,EnhancedListenerType> - Interface in Task.Support.EnhancedListeners
ExecutionDelegate

F

fileToByteBuffer(String) - Static method in class Task.Support.CoreSupport.Utils
this method reads a file and returns a ByteBuffer of the contents of this file.
fileToByteBuffer(String, Map<String, ByteBuffer>) - Static method in class Task.Support.CoreSupport.Utils
this method reads a file and returns it as a ByteBuffer, but it uses a Map for a fileCache
fileToBytes(String) - Static method in class Task.Support.CoreSupport.Utils
this method reads a file and returns a byte[] of the contents of this file.
fileToBytes(String, Map<String, ByteBuffer>) - Static method in class Task.Support.CoreSupport.Utils
this method reads a file and returns it as a byte array, but it uses a Map for a fileCache
find(Window, String) - Static method in class org.swixml.contrib.gmap.GoogleMapPanel
 
find(Window) - Static method in class org.swixml.contrib.gmap.GoogleMapPanel
 
fireUpdatesToListeners(List<EventType>, ExecutionDelegate<EventType, ListenerType>) - Method in class Task.Support.EnhancedListeners.EnhancedListenerManager
 
fireUpdateToListeners(EventType, ExecutionDelegate<EventType, ListenerType>) - Method in class Task.Support.EnhancedListeners.EnhancedListenerManager
 
font() - Method in enum Task.Support.GUISupport.FontUtils.FontStyles
 
font(int) - Method in enum Task.Support.GUISupport.FontUtils.FontStyles
 
font(float) - Method in enum Task.Support.GUISupport.FontUtils.FontStyles
 
FontCache - Static variable in class Task.Support.GUISupport.FontUtils
 
FontUtils - Class in Task.Support.GUISupport
FontUtils is a convenience class that allows pre defined font sizes and styles to be accessed easily.
FontUtils() - Constructor for class Task.Support.GUISupport.FontUtils
 
FontUtils.FontNames - Enum in Task.Support.GUISupport
 
FontUtils.FontStyles - Enum in Task.Support.GUISupport
 
formatForLabel(String) - Static method in class Task.Support.GUISupport.GUIUtils
 
formattedString() - Method in class Task.AbstractTask
 
fromBytes(byte[]) - Static method in class Task.Support.CoreSupport.ZipObject
Given a byte[] which contains the output of ZipObject.toBytes(), allows the original uncompressed object to be reconstituted... using ZipObject.getObject().
fromInputStream(InputStream) - Static method in class Task.Support.CoreSupport.ZipObject
Given an InputStream which contains the output of ZipObject.toBytes(), allows the original uncompressed object to be reconstituted... using ZipObject.getObject().

G

g2(Graphics) - Static method in class Task.Support.GUISupport.ImageUtils
 
g2(BufferedImage) - Static method in class Task.Support.GUISupport.ImageUtils
 
g2(SplashScreen) - Static method in class Task.Support.GUISupport.ImageUtils
 
g2plain(Graphics) - Static method in class Task.Support.GUISupport.ImageUtils
 
generateProgressMessage(ProgressMonitorUtils.Type, String, int, int) - Static method in class Task.ProgressMonitor.ProgressMonitorUtils
Creates a status message for the progress, not formatted in HTML, just plain text.
getAutoShutdownPolicy() - Method in class Task.AbstractTask
 
getBindWith() - Method in class org.swixml.contrib.RSyntaxTextAreaEx
 
getBlurredImage(BufferedImage) - Static method in class Task.Support.GUISupport.DrawingUtils
Given a BufferedImage, this method returns a blurred version of the image as a new BufferedImage.
getBorderColor() - Method in class org.swixml.contrib.Toaster
 
getBoundProperties() - Method in class Task.AbstractTask
 
getBytes() - Method in class Task.Support.CoreSupport.ByteBuffer
 
getCallerClassName() - Static method in class Task.Support.CoreSupport.Utils
 
getCallerMethodName() - Static method in class Task.Support.CoreSupport.Utils
 
getCancelledMessage() - Method in class Task.TaskExecutorAdapter
 
getCancelledMessage() - Method in interface Task.TaskExecutorIF
 
getClassNameFromStackTrace(int) - Static method in class Task.Support.CoreSupport.Utils
 
getContentPanelBgPainter() - Static method in class Task.Support.GUISupport.DrawingUtils
 
getConverter() - Method in class org.swixml.contrib.RSyntaxTextAreaEx
 
getCopyOfBufferedImage(BufferedImage, boolean) - Static method in class Task.Support.GUISupport.ImageUtils
returns a copy of the given buffered image with preferred transparency setting (regardless of whether the orginal BufferedImage has any transparency in it or not.
getCopyOfBufferedImage(BufferedImage) - Static method in class Task.Support.GUISupport.ImageUtils
simply returns a copy of the given BufferedImage
getCopyOfList() - Method in class Task.Manager.TaskManager
returns a copy of the task list
getDarkBorder() - Static method in class Task.Support.GUISupport.DrawingUtils
 
getDebugHeaderString(String) - Static method in class Task.Support.CoreSupport.Utils
 
getDescription() - Method in class Task.AbstractTask
 
getDisabledGlassPaneBgPainter(int, int) - Static method in class Task.Support.GUISupport.DrawingUtils
 
getDisabledIcon() - Method in class org.swixml.contrib.JMenuButton
 
getDisplayTime() - Method in class org.swixml.contrib.Toaster
 
getDropTargetLabelBgPainter() - Static method in class Task.Support.GUISupport.DrawingUtils
 
getFormattedTooltip(String, String) - Static method in class Task.Support.GUISupport.GUIUtils
Return an HTML formatted tooltip string similar to what Office 2007 has.
getGlossyImage(BufferedImage) - Static method in class Task.Support.GUISupport.DrawingUtils
 
getGlossyImage(BufferedImage, Color, GlossPainter.GlossPosition) - Static method in class Task.Support.GUISupport.DrawingUtils
given a bufferedimage, returns a glossy version of the image, with the given color and gloss position applied
getGradientFillBgPainter(int, int, Color, Color) - Static method in class Task.Support.GUISupport.DrawingUtils
 
getHeaderPanelBgPainter() - Static method in class Task.Support.GUISupport.DrawingUtils
 
getIcon() - Method in class org.swixml.contrib.JMenuButton
 
getIconCount() - Method in class org.swixml.contrib.JAnimatedButton
 
getImageOfComponent(JComponent) - Static method in class Task.Support.GUISupport.ImageUtils
 
getImageOfComponent(JComponent, boolean) - Static method in class Task.Support.GUISupport.ImageUtils
 
getInfoLabelBgPainter() - Static method in class Task.Support.GUISupport.DrawingUtils
 
getInputStream() - Method in class Task.Support.CoreSupport.ByteBuffer
 
getInterruptedMessage() - Method in class Task.TaskExecutorAdapter
 
getInterruptedMessage() - Method in interface Task.TaskExecutorIF
 
getLicenseKey() - Method in class org.swixml.contrib.gmap.MapLookup
 
getLightBorder() - Static method in class Task.Support.GUISupport.DrawingUtils
 
getLookup() - Method in class org.swixml.contrib.gmap.GoogleMapPanel
 
getMap(double, double, int, int, int, MapMarker...) - Method in class org.swixml.contrib.gmap.MapLookup
 
getMapToolTipText() - Method in class org.swixml.contrib.gmap.GoogleMapPanel
 
getMargin() - Method in class org.swixml.contrib.Toaster
 
getMessageColor() - Method in class org.swixml.contrib.Toaster
 
getMustRunInEDT() - Method in enum Task.Support.EnhancedListeners.EnhancedListener.EDTPolicy
 
getName() - Method in class Task.AbstractTask
 
getName() - Method in enum Task.Support.GUISupport.FontUtils.FontNames
 
getName() - Method in class Task.TaskException
 
getName() - Method in class Task.TaskExecutorAdapter
 
getNotOnlineMessage() - Method in class Task.TaskExecutorAdapter
 
getNotOnlineMessage() - Method in interface Task.TaskExecutorIF
 
getObject() - Method in class Task.Support.CoreSupport.ZipObject
this method extracts the compress object (from this ZipObject) and returns it.
getObjectRay(Object...) - Static method in class Task.Support.CoreSupport.Utils
 
getPanelBgPainter() - Static method in class Task.Support.GUISupport.DrawingUtils
 
getProgressMessage() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
 
getProgressMessage() - Method in interface Task.ProgressMonitor.UIHookIF
This method simply returns the message set by UIHookIF.setProgressMessage(String).
getProgressPercent(int, int) - Static method in class Task.ProgressMonitor.ProgressMonitorUtils
 
getReflection(BufferedImage, float, float, boolean) - Static method in class Task.Support.GUISupport.DrawingUtils
 
getRemainderOfInput() - Method in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
This method returns an empty StringBuffer if there is no remainder in this Tokenizer object.
getRetryMessage() - Method in class Task.TaskExecutorAdapter
 
getRetryMessage() - Method in interface Task.TaskExecutorIF
 
getRoundedRectanglePainter(Color, Color, int, AbstractAreaPainter.Style, int) - Static method in class Task.Support.GUISupport.DrawingUtils
 
getScaledBufferedImage(BufferedImage, int, int) - Static method in class Task.Support.GUISupport.ImageUtils
This returns a scaled version of the original icon image.
getScaledBufferedImage(BufferedImage, int, int, boolean, float) - Static method in class Task.Support.GUISupport.ImageUtils
This returns a scaled version of the original icon image.
getSize() - Method in class Task.Support.CoreSupport.ByteBuffer
 
getSize() - Method in class Task.Support.CoreSupport.ZipObject
 
getSizeString() - Method in class Task.Support.CoreSupport.ZipObject
 
getStartMessage() - Method in class Task.TaskExecutorAdapter
 
getStartMessage() - Method in interface Task.TaskExecutorIF
 
getState() - Method in class Task.AbstractTask
 
getStatus() - Method in class Task.AbstractTask
 
getStatusUpdaterBgPainter() - Static method in class Task.Support.GUISupport.DrawingUtils
 
getStep() - Method in class org.swixml.contrib.Toaster
 
getStepTime() - Method in class org.swixml.contrib.Toaster
 
getString(Map, Object) - Static method in class Task.Support.CoreSupport.Utils
this method does away with a NullPointerException that might get thrown (incorrectly semantically speaking) when the following call is made: (String)Map.get("nonexistentkey");.
getSuccessMessage() - Method in class Task.TaskExecutorAdapter
 
getSuccessMessage() - Method in interface Task.TaskExecutorIF
 
getSwingWorker() - Method in class Task.AbstractTask
 
getSwingWorker() - Method in class Task.NetworkTask
 
getSwingWorker() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
Returns a reference to the underlying SwingWorker providing the execution context/thread, if one has been copyFrom
getSwingWorker() - Method in class Task.SimpleTask
 
getSystemTrayIcon(String) - Static method in class Task.Support.GUISupport.GUIUtils
create a trayicon with the provided image
getSystemTrayIcon(BufferedImage) - Static method in class Task.Support.GUISupport.GUIUtils
 
getTask() - Method in class Task.Manager.TaskListChangeEvent
 
getTask() - Method in class Task.TaskException
 
getTaskManager() - Method in class Task.AbstractTask
 
getText() - Method in class org.swixml.contrib.JMenuButton
 
getTextBounds(Graphics2D, Font, String) - Static method in class Task.Support.GUISupport.DrawingUtils
 
getTime() - Static method in class Task.Support.CoreSupport.Utils
this method returns the current time in
getToasterColor() - Method in class org.swixml.contrib.Toaster
 
getToasterHeight() - Method in class org.swixml.contrib.Toaster
 
getToasterMessageFont() - Method in class org.swixml.contrib.Toaster
 
getToasterWidth() - Method in class org.swixml.contrib.Toaster
 
getTokens() - Method in class Task.Support.CoreSupport.TheStringTokenizer
 
getTokens() - Method in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
Returns all the tokens in the current message buffer, that are delimited by the String.
getTokens(String, String) - Static method in class Task.Support.CoreSupport.Utils
this is just a convenience method to tokenize a string using the services of TheStringTokenizer class.
getTranslucentImage(BufferedImage, float) - Static method in class Task.Support.GUISupport.DrawingUtils
Given a BufferedImage, this method returns a translucent version of this image as a new BufferedImage.
getType() - Method in class Task.AbstractTask
 
getType() - Method in class Task.Manager.TaskListChangeEvent
 
getType() - Method in class Task.NetworkTask
 
getType() - Method in class Task.RecurringNetworkTask
 
getType() - Method in class Task.SimpleTask
 
getType() - Method in class Task.TaskException
 
getUIHook() - Method in class Task.AbstractTask
 
getUIHook() - Method in class Task.ProgressMonitor.InputStreamUIHookSupport
Get the ProgressMonitor object being used by this stream.
getUIHook() - Method in class Task.ProgressMonitor.UIHookAdapter
 
getURI(double, double, int, int, int, MapMarker...) - Method in class org.swixml.contrib.gmap.MapLookup
 
getWindowBoundsFromPersistence(Class) - Static method in class Task.Support.GUISupport.GUIUtils
the first time this method is called, and there are no prefs stored in the registry, it will return null
GIF_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
GMAP_LICENSE_KEY - Static variable in class org.swixml.contrib.gmap.MapLookup
 
GMAP_STATIC_URI - Static variable in class org.swixml.contrib.gmap.MapLookup
 
GMAP_STATIC_URI_V2 - Static variable in class org.swixml.contrib.gmap.MapLookup
 
GoogleMapPanel - Class in org.swixml.contrib.gmap
 
GoogleMapPanel() - Constructor for class org.swixml.contrib.gmap.GoogleMapPanel
 
GradientPainter - Class in Task.Support.GUISupport
GradientPainter is a simple JPanel extension that paints a FAST gradient (using JIDE OSS library).
GradientPainter() - Constructor for class Task.Support.GUISupport.GradientPainter
 
GradientPainter(Color, Color, boolean) - Constructor for class Task.Support.GUISupport.GradientPainter
 
GradientPainter(int, int, Color, Color, boolean) - Constructor for class Task.Support.GUISupport.GradientPainter
 
GRAY_4GRAD - Static variable in class Task.Support.GUISupport.DrawingUtils
 
GUIUtils - Class in Task.Support.GUISupport
GUIUtils is a utility class with frequently used functions to make writing Swing GUI apps easier

H

hasAutoShutdownPolicy(AutoShutdownSignals) - Method in class Task.AbstractTask
returns true if this task has an autostop policy that matches the param
hasRemainder() - Method in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
Determines whether there is any data left over in the message buffer after all the tokens have been extracted from it.
hasTokens() - Method in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
Returns true if there tokens exist in the message buffer.
HTML_TEXT_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 

I

ICS_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
ImageUtils - Class in Task.Support.GUISupport
ImageUtils allows icons stored in jar files on the classpaths to be loaded as ImageIcon objects and caches them
ImageUtils() - Constructor for class Task.Support.GUISupport.ImageUtils
 
input - Variable in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
 
InputStreamUIHookSupport - Class in Task.ProgressMonitor
InputStreamUIHookSupport is used to notify a UIHookIF that IO operations are being performed and to report the status of the IO operation.
InputStreamUIHookSupport(InputStreamUIHookSupport.Type, UIHookIF, InputStream) - Constructor for class Task.ProgressMonitor.InputStreamUIHookSupport
Constructs an object to monitor the progress of an input stream.
InputStreamUIHookSupport(InputStreamUIHookSupport.Type, UIHookIF, HttpURLConnection) - Constructor for class Task.ProgressMonitor.InputStreamUIHookSupport
 
InputStreamUIHookSupport.Type - Enum in Task.ProgressMonitor
 
interrupedIO() - Method in interface Task.ProgressMonitor.UIHookIF
this is called when UIHookIF.cancel() is called, or the underlying SwingWorker is cancelled. it results in the underlying IO operation to be interrupted, and an InterruptedIOException to be thrown
interrupted(Throwable, AbstractTask) - Method in class Task.SimpleTaskHandler
this is called after the task has been interrupted. ok or error may not be called after this.
interrupted(Throwable, AbstractTask) - Method in interface Task.SimpleTaskHandlerIF
this is called after the task has been interrupted. ok or error may not be called after this.
interruptedIOInUI() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
this is called in EDT, in your code. this is called if the underlying IO stream was interrupted for some reason (user cancellation via UIHookIF, or SwingWorker (which belongs to a task) cancellation for some reason).
isCancelled() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
This is used to check if SwingUIHookAdapter.cancel() was called already.
isCancelled() - Method in interface Task.ProgressMonitor.UIHookIF
if the user has called UIHookIF.cancel() then this returns true
isDifferent(Object, Object) - Static method in class Task.Support.CoreSupport.Utils
checks to see if lhs and rhs objects are the same or not
isEmptyOrNull(String) - Static method in class Task.Support.GUISupport.GUIUtils
 
isInEDT() - Static method in class Task.Support.GUISupport.ThreadUtils
 
isNotSet() - Method in class Task.Support.CoreSupport.BitRegister
 
isNullOrEmpty(String) - Static method in class Task.Support.CoreSupport.Utils
 
isObjectInArray(T, T[]) - Static method in class Task.Support.CoreSupport.Utils
 
isObjectInList(T, List<T>) - Static method in class Task.Support.CoreSupport.Utils
 
isOnline() - Method in class Task.Manager.TaskManager
 
isRecieveStatusNotificationEnabled() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
see if silent mode is activated for RECV updates
isRunning() - Method in class org.swixml.contrib.JAnimatedButton
 
isSendStatusNotificationEnabled() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
see if silent mode is activated for SEND updates
isSet() - Method in class Task.Support.CoreSupport.BitRegister
 
isShutdown() - Method in class Task.AbstractTask
 
isSoftListener() - Method in class Task.Support.EnhancedListeners.EnhancedListener
 
isStateChangedEnabled() - Method in class org.swixml.contrib.JAnimatedButton
 
isStringInList(String, List<String>) - Static method in class Task.Support.CoreSupport.Utils
 
isSystemTrayAvailable() - Static method in class Task.Support.GUISupport.GUIUtils
 
isUseInternalProgressBar() - Method in class org.swixml.contrib.gmap.GoogleMapPanel
 

J

JAnimatedButton - Class in org.swixml.contrib
 
JAnimatedButton() - Constructor for class org.swixml.contrib.JAnimatedButton
 
JMenuButton - Class in org.swixml.contrib
A JMenuButton is a button that is split up into two parts, both of which are buttons in their own right.
JMenuButton() - Constructor for class org.swixml.contrib.JMenuButton
 
JMenuButton(String, Action[]) - Constructor for class org.swixml.contrib.JMenuButton
 
JMenuButton(Icon, Action[]) - Constructor for class org.swixml.contrib.JMenuButton
 
JMenuButton(String, Icon, Action[]) - Constructor for class org.swixml.contrib.JMenuButton
 
JPEG_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
JSimpleMenuButton - Class in org.swixml.contrib
A JMenuButton is a button that is split up into two parts, both of which are buttons in their own right.
JSimpleMenuButton() - Constructor for class org.swixml.contrib.JSimpleMenuButton
 

L

launchExternalBrowser(String) - Static method in class Task.Support.GUISupport.GUIUtils
 
listOfLogRecordToString(List<LogRecord>) - Static method in class Task.Support.CoreSupport.Utils
Turns a list of LogRecord objects into a string for debug purposes
listToString(List) - Static method in class Task.Support.CoreSupport.Utils
 
loadBufferedImage(String, boolean, float) - Static method in class Task.Support.GUISupport.ImageUtils
Tries to load the .png file from the classpath (should be in the JAR files for the app) or the cache (if it's avaialble in there).
loadMap(String, String, int, MapMarker...) - Method in class org.swixml.contrib.gmap.GoogleMapPanel
 
loadMap(JProgressBar, String, String, int, MapMarker...) - Method in class org.swixml.contrib.gmap.GoogleMapPanel
 
loadScaledBufferedIcon(String, int, int, boolean, float) - Static method in class Task.Support.GUISupport.ImageUtils
 

M

MAIL_HOST - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
this is the key of the SMTP host stored in web.xml
MAIL_PORT - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
MAIL_PSWD - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
MAIL_USER - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
main(String[]) - Static method in class org.swixml.contrib.gmap.GoogleMapPanel
 
main(String[]) - Static method in class Task.Support.CoreSupport.ByteBuffer
 
main(String[]) - Static method in class Task.Support.CoreSupport.ZipObject
SELF TEST METHOD
makeLabelWithShortcut(String, int) - Static method in class Task.Support.GUISupport.GUIUtils
 
MapLookup - Class in org.swixml.contrib.gmap
MapLookup

http://code.google.com/apis/maps/documentation/staticmaps/index.html

MapLookup() - Constructor for class org.swixml.contrib.gmap.MapLookup
 
MapLookup.MarkerUtils - Class in org.swixml.contrib.gmap
markers=40.702147,-74.015794,blues|40.711614,-74.012318,greeng&key=MAPS_API_KEY
MapLookup.MarkerUtils() - Constructor for class org.swixml.contrib.gmap.MapLookup.MarkerUtils
 
MapMarker - Class in org.swixml.contrib.gmap
{latitude} (required) specifies a latitudinal value with precision to 6 decimal places.
MapMarker(double, double, MapMarker.MarkerColor, char) - Constructor for class org.swixml.contrib.gmap.MapMarker
 
MapMarker(double, double) - Constructor for class org.swixml.contrib.gmap.MapMarker
 
mapToString(Map) - Static method in class Task.Support.CoreSupport.Utils
 
MARKER_SEPARATOR - Static variable in class org.swixml.contrib.gmap.MapLookup
 
MARKERS_KEY - Static variable in class org.swixml.contrib.gmap.MapLookup
 
MESSAGE_SENT_OK - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
MIMETypeConstantsIF - Interface in Task.Support.CoreSupport
ConstantsIF contains various constants used in the clienthelper and EmailServlet impl of the mail service.
mnemonicToString(int) - Static method in class Task.Support.GUISupport.GUIUtils
Converts the KeyEvent int to a String that can be displayed in a UI.
MP3_AUDIO_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
MPEG_VIDEO_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
MSWORD_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
mustRunInEDT() - Method in class Task.Support.EnhancedListeners.EnhancedListener
 

N

NetworkTask<ReturnValueType> - Class in Task
SwingNetworkTask is a SwingWorker that's optimzed for calling services in the platform and handling mundane error processing, etc.
NetworkTask(TaskManager, TaskExecutorIF<ReturnValueType>, String, String, AutoShutdownSignals...) - Constructor for class Task.NetworkTask
 
NetworkTaskHandler<ReturnValueType> - Class in Task
NetworkTaskHandler extends SimpleTaskHandler, and adds support for NetworkTaskHandler.notOnline(AbstractTask).
NetworkTaskHandler() - Constructor for class Task.NetworkTaskHandler
 
NetworkTaskHandlerIF<ReturnValueType> - Interface in Task
NetworkTaskHandlerIF is an extension of the lifecycle events that can be passed to a task handler that deals with responding to network-enabled tasks.
newConcurrentSwingWorkerCreationAttempt(String, AbstractTask) - Static method in class Task.TaskException
 
notEmpty(String, String) - Static method in class org.swixml.contrib.gmap.Validate
 
notNull(Object, String) - Static method in class org.swixml.contrib.gmap.Validate
 
notOnline(AbstractTask) - Method in class Task.NetworkTaskHandler
this is called if the method is trying to run in the background and the container is not online.
notOnline(AbstractTask) - Method in interface Task.NetworkTaskHandlerIF
this is called if the method is trying to run in the background and the container is not online.

O

offline() - Method in class Task.Manager.TaskManager
 
ok(ReturnValueType, long, AbstractTask) - Method in class Task.SimpleTaskHandler
this is called after stopped(). it signifies successful task completion.
ok(ReturnValueType, long, AbstractTask) - Method in interface Task.SimpleTaskHandlerIF
this is called after stopped(). it signifies successful task completion.
online() - Method in class Task.Manager.TaskManager
 
org.swixml.contrib - package org.swixml.contrib
 
org.swixml.contrib.gmap - package org.swixml.contrib.gmap
 

P

paint(Graphics2D, Object, int, int) - Method in class Task.Support.GUISupport.GradientPainter
 
parseMessageFrom(PropertyChangeEvent) - Static method in class Task.ProgressMonitor.ProgressMonitorUtils
 
parsePercentFrom(PropertyChangeEvent) - Static method in class Task.ProgressMonitor.ProgressMonitorUtils
 
parseStatusMessageFrom(PropertyChangeEvent) - Static method in class Task.ProgressMonitor.ProgressMonitorUtils
 
parseTypeFrom(PropertyChangeEvent) - Static method in class Task.ProgressMonitor.ProgressMonitorUtils
 
PDF_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
PLAIN_TEXT_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
PNG_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
printDebugHeaderToConsole(String) - Static method in class Task.Support.CoreSupport.Utils
 
ProgressMonitorUtils - Class in Task.ProgressMonitor
ProgressMonitorUtils allows you to easily work with the progress monitor classes, to generate messages, parse information out of PropertyChangeEvents, etc.
ProgressMonitorUtils() - Constructor for class Task.ProgressMonitor.ProgressMonitorUtils
 
ProgressMonitorUtils.Type - Enum in Task.ProgressMonitor
 
pruneSoftListeners(List<? extends EnhancedListener>) - Static method in class Task.Support.EnhancedListeners.EnhancedListener
a simple utility method that removes all the listeners that have EnhancedListener.isSoftListener() set to true.
pruneSoftListeners() - Method in class Task.Support.EnhancedListeners.EnhancedListenerManager
actually performs the pruning of listeners
putWindowBoundsToPersistence(Class, Rectangle) - Static method in class Task.Support.GUISupport.GUIUtils
 

R

read() - Method in class Task.ProgressMonitor.InputStreamUIHookSupport
Overrides FilterInputStream.read to update the progress monitor after the read.
read(byte[]) - Method in class Task.ProgressMonitor.InputStreamUIHookSupport
Overrides FilterInputStream.read to update the progress monitor after the read.
read(byte[], int, int) - Method in class Task.ProgressMonitor.InputStreamUIHookSupport
Overrides FilterInputStream.read to update the progress monitor after the read.
RecurringNetworkTask<ReturnValueType> - Class in Task
This task is a subclass of NetworkTask.
RecurringNetworkTask(TaskManager, TaskExecutorIF<ReturnValueType>, String, String, AutoShutdownSignals...) - Constructor for class Task.RecurringNetworkTask
 
RecurringNetworkTask(TaskExecutorIF<ReturnValueType>) - Constructor for class Task.RecurringNetworkTask
 
registerTags(TagLibrary) - Method in class org.swixml.contrib.TagLibraryProvider
 
registerTask(AbstractTask) - Method in class Task.Manager.TaskManager
Registers the given task with the container.
remainder - Variable in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
 
removeFromSystemTray(TrayIcon) - Static method in class Task.Support.GUISupport.GUIUtils
Warning: Don't call this method from a VM shutdown hook thread. it causes deadlock for some reason?!
removeListener(ListenerType) - Method in class Task.Support.EnhancedListeners.EnhancedListenerManager
 
removeNotify() - Method in class org.swixml.contrib.JAnimatedButton
 
reset() - Method in class Task.ProgressMonitor.InputStreamUIHookSupport
Overrides FilterInputStream.reset to reset the progress monitor as well as the stream.
resetCancelFlag() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
If SwingUIHookAdapter.cancel() is called, then all subsequent IO operations will be cancelled, until this method is called to reset the cancel condition.
resetCancelFlag() - Method in interface Task.ProgressMonitor.UIHookIF
if UIHookIF.cancel() has been called, then this method must be called to allow future IO ops to proceed.
restartWithNewDelay(int) - Method in class Task.RecurringNetworkTask
After RecurringNetworkTask.start(int) is called, this method can be used to change the refreshDelayInSec ...
restoreNotificationSet() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
 
REV_GRAY_4GRAD - Static variable in class Task.Support.GUISupport.DrawingUtils
 
RSyntaxTextAreaEx - Class in org.swixml.contrib
 
RSyntaxTextAreaEx() - Constructor for class org.swixml.contrib.RSyntaxTextAreaEx
 
RTF_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 

S

s - Variable in class Task.Support.CoreSupport.TheStringTokenizer
 
saveNotificationSet() - Method in class Task.ProgressMonitor.SwingUIHookAdapter
this saves the current state of SwingUIHookAdapter.enableRecieveStatusNotification(boolean) and SwingUIHookAdapter.enableSendStatusNotification(boolean)
scaleToFit(int, int, int, int, boolean) - Static method in class Task.Support.GUISupport.ImageUtils
This method gets a scaling factor that you can apply to a source image to make it fit the bounds of the target W/H, while maintaining the aspect ratio.
scaleToFit(int, int, int, int) - Static method in class Task.Support.GUISupport.ImageUtils
uses ImageUtils.scaleToFit(int,int,int,int,boolean) to figure out the final width/height of the source image that should be fit in the target width/height provided, while maintaining the aspect ration of the source image.
SEND_EMAIL - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
SEND_EMAIL_WITH_ATTACHMENT - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
set() - Method in class Task.Support.CoreSupport.BitRegister
 
set(String, String) - Method in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
This method sets up the Tokenizer to process the given message buffer and delim (delimiter) string.
set(StringBuffer, String) - Method in class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
same as set( String , String ), only it converts the StringBuffer to a String before calling the other set()
setAppIcon(JFrame, String) - Static method in class Task.Support.GUISupport.GUIUtils
 
setAppIcon(JFrame, Image) - Static method in class Task.Support.GUISupport.GUIUtils
 
setAutoShutdownPolicy(AutoShutdownSignals...) - Method in class Task.AbstractTask
 
setBindWith(String) - Method in class org.swixml.contrib.RSyntaxTextAreaEx
 
setBorderColor(Color) - Method in class org.swixml.contrib.Toaster
 
setConverter(Converter<?, ?>) - Method in class org.swixml.contrib.RSyntaxTextAreaEx
 
setDelay(int) - Method in class org.swixml.contrib.JAnimatedButton
 
setDescription(String) - Method in class Task.AbstractTask
 
setDisabledIcon(Icon) - Method in class org.swixml.contrib.JMenuButton
 
setDisplayTime(int) - Method in class org.swixml.contrib.Toaster
 
setEncoding(String) - Method in class Task.Support.CoreSupport.ByteBuffer
 
setFonts() - Static method in class Task.Support.GUISupport.FontUtils
load all the fonts from the JAR file now
setIcon(Icon) - Method in class org.swixml.contrib.JMenuButton
 
setIconCount(int) - Method in class org.swixml.contrib.JAnimatedButton
 
setLicenseKey(String) - Method in class org.swixml.contrib.gmap.MapLookup
 
setMapToolTipText(String) - Method in class org.swixml.contrib.gmap.GoogleMapPanel
 
setMargin(int) - Method in class org.swixml.contrib.Toaster
 
setMessageColor(Color) - Method in class org.swixml.contrib.Toaster
 
setMinimumWindowSize(JFrame, int, int) - Static method in class Task.Support.GUISupport.GUIUtils
 
setMinimumWindowSize(JFrame, Dimension) - Static method in class Task.Support.GUISupport.GUIUtils
 
setName(String) - Method in class Task.AbstractTask
 
setNimbusLookAndFeelBeforeUIStarted() - Static method in class Task.Support.GUISupport.GUIUtils
 
setOpaque(boolean) - Method in class org.swixml.contrib.JMenuButton
 
setProgressMessage(String) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
 
setProgressMessage(String) - Method in interface Task.ProgressMonitor.UIHookIF
When the status is reported (SEND or RECIEVE), this message is passed along with those method calls to the UI itself.
setRefreshDelay(int) - Method in class Task.RecurringNetworkTask
Set the time delay between running TaskExecutorIF continually.
setRunInEDTPolicy(EnhancedListener.EDTPolicy) - Method in class Task.Support.EnhancedListeners.EnhancedListener
 
setSoftListener(boolean) - Method in class Task.Support.EnhancedListeners.EnhancedListener
 
setState(AbstractTask.State) - Method in class Task.AbstractTask
 
setStateChangedEnabled(boolean) - Method in class org.swixml.contrib.JAnimatedButton
 
setStatus(String) - Method in class Task.AbstractTask
 
setStep(int) - Method in class org.swixml.contrib.Toaster
 
setStepTime(int) - Method in class org.swixml.contrib.Toaster
 
setSwingWorker(Future<?>) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
sets a reference to the underlying SwingWorker providing the execution context/thread. this is used to evaluate cancellation.
setSystemLookAndFeel(JFrame) - Static method in class Task.Support.GUISupport.GUIUtils
 
setSystemLookAndFeelBeforeUIStarted() - Static method in class Task.Support.GUISupport.GUIUtils
 
setTaskHandler(NetworkTaskHandlerIF<ReturnValueType>) - Method in class Task.NetworkTask
 
setTaskHandler(SimpleTaskHandlerIF<ReturnValueType>) - Method in class Task.SimpleTask
 
setTaskManager(TaskManager) - Method in class Task.AbstractTask
 
setTestMode_isOnline(boolean) - Method in class Task.NetworkTask
 
setText(String) - Method in class org.swixml.contrib.JMenuButton
 
setToasterColor(Color) - Method in class org.swixml.contrib.Toaster
 
setToasterHeight(int) - Method in class org.swixml.contrib.Toaster
 
setToasterMessageFont(Font) - Method in class org.swixml.contrib.Toaster
 
setToasterWidth(int) - Method in class org.swixml.contrib.Toaster
 
setUIDefaultColorProperty(String, Color) - Static method in class Task.Support.GUISupport.GUIUtils
uses UIDefault to replace a color property
setUIDefaultFontProperty(String, Font) - Static method in class Task.Support.GUISupport.GUIUtils
uses UIDefault to replace a font property
setUseInternalProgressBar(boolean) - Method in class org.swixml.contrib.gmap.GoogleMapPanel
 
showErrorDialog(Component, String) - Static method in class Task.Support.GUISupport.GUIUtils
 
showErrorDialog(Component, Throwable) - Static method in class Task.Support.GUISupport.GUIUtils
 
showErrorDialog(Component, String, Throwable) - Static method in class Task.Support.GUISupport.GUIUtils
 
showPopup() - Method in class org.swixml.contrib.JSimpleMenuButton
 
showToaster(Icon, String) - Method in class org.swixml.contrib.Toaster
 
showToaster(String) - Method in class org.swixml.contrib.Toaster
 
shutdown() - Method in class Task.AbstractTask
 
shutdownAll() - Method in class Task.Manager.TaskManager
stops ALL tasks that are registered with this manager. this includes AutoShutdownSignals.Daemon tasks as well.
shutdownCalled(AbstractTask) - Method in class Task.SimpleTaskHandler
This method is called on the task handler when AbstractTask.shutdown() is called.
shutdownCalled(AbstractTask) - Method in interface Task.SimpleTaskHandlerIF
This method is called on the task handler when AbstractTask.shutdown() is called.
signalBeforeStart(SimpleTaskHandlerIF, AbstractTask) - Static method in class Task.StateChanger
 
signalCancelled(AbstractTask, SimpleTaskHandlerIF, TaskExecutorIF, long) - Static method in class Task.StateChanger
 
signalErr(AbstractTask, SimpleTaskHandlerIF, TaskExecutorIF, ExecutionException, long) - Static method in class Task.StateChanger
 
signalInterrupted(AbstractTask, SimpleTaskHandlerIF, TaskExecutorIF, InterruptedException, long) - Static method in class Task.StateChanger
 
signalNotOnline(AbstractTask, NetworkTaskHandlerIF, TaskExecutorIF) - Static method in class Task.StateChanger
 
signalOK(AbstractTask, SimpleTaskHandlerIF<T>, TaskExecutorIF<T>, T, long) - Static method in class Task.StateChanger
 
signalStart(AbstractTask, SimpleTaskHandlerIF, TaskExecutorIF) - Static method in class Task.StateChanger
 
signalStopped(AbstractTask, SimpleTaskHandlerIF, long) - Static method in class Task.StateChanger
 
SimpleTask<ReturnValueType> - Class in Task
Task is a SwingWorker that's optimzed for calling services in the platform and handling mundane error processing, etc.
SimpleTask(TaskManager, TaskExecutorIF<ReturnValueType>, String, String, AutoShutdownSignals...) - Constructor for class Task.SimpleTask
use this constructor if you want the tasks to show up in the DesktopAppContainerIF
SimpleTaskHandler<ReturnValueType> - Class in Task
TaskHandler is a convenience class that you can extend in order to override only the methods that you want to override for your task handler.
SimpleTaskHandler() - Constructor for class Task.SimpleTaskHandler
 
SimpleTaskHandlerIF<ReturnValueType> - Interface in Task
TaskHandlerIF is an interface that encapsulates the various lifecyle stages that a task will go through.
SIZE_DEFAULT - Static variable in class org.swixml.contrib.gmap.MapLookup
 
SIZE_KEY - Static variable in class org.swixml.contrib.gmap.MapLookup
 
SIZE_SEPARATOR - Static variable in class org.swixml.contrib.gmap.MapLookup
 
skip(long) - Method in class Task.ProgressMonitor.InputStreamUIHookSupport
Overrides FilterInputStream.skip to update the progress monitor after the skip.
start() - Method in class org.swixml.contrib.JAnimatedButton
 
start(int) - Method in class Task.RecurringNetworkTask
Start the recurring network task... it will periodically run the TaskExecutorIF in the background.
start() - Method in class Task.RecurringNetworkTask
Start the recurring network task... it will use the default refresh delay...
started(AbstractTask) - Method in class Task.SimpleTaskHandler
this is called after the task is started, it's not running in the background at this point, but is just about to. all the states have been setup (in the task) and updates sent out.
started(AbstractTask) - Method in interface Task.SimpleTaskHandlerIF
this is called after the task is started, it's not running in the background at this point, but is just about to. all the states have been setup (in the task) and updates sent out.
StateChanger - Class in Task
StateChanger is a functor that orchestrates the business logic required to have state changes take place in the Task API.
StateChanger() - Constructor for class Task.StateChanger
 
stop() - Method in class org.swixml.contrib.JAnimatedButton
 
stopped(long, AbstractTask) - Method in class Task.SimpleTaskHandler
this is called after the task has ended normally (not interrupted). ok or error may be called after this.
stopped(long, AbstractTask) - Method in interface Task.SimpleTaskHandlerIF
this is called after the task has ended normally (not interrupted). ok or error may be called after this.
stopRecurring() - Method in class Task.RecurringNetworkTask
Stop the recurring network task... this will stop the network task from running TaskExecutorIF in the background.
SwingUIHookAdapter - Class in Task.ProgressMonitor
SwingUIHookAdapter is an EDT friendly adapter that uses the UIHookIF facility of the networking layer to provide feedback to the UI, and get cancel-signal from the UI as well.
SwingUIHookAdapter() - Constructor for class Task.ProgressMonitor.SwingUIHookAdapter
simply creates an adapter class that you have to override with the implementations of the callback methods: SwingUIHookAdapter.updateRecieveStatusInUI(int,int) SwingUIHookAdapter.updateSendStatusInUI(int,int) (int, int)} SwingUIHookAdapter.closeInUI()
SwingUIHookAdapter(Future<?>) - Constructor for class Task.ProgressMonitor.SwingUIHookAdapter
The Future object is used to determine if the cancel has occured.
SwingUIHookAdapter.PropertyList - Enum in Task.ProgressMonitor
 

T

TagLibraryProvider - Class in org.swixml.contrib
 
TagLibraryProvider() - Constructor for class org.swixml.contrib.TagLibraryProvider
 
Task - package Task
 
Task.Manager - package Task.Manager
 
Task.ProgressMonitor - package Task.ProgressMonitor
 
Task.Support.CoreSupport - package Task.Support.CoreSupport
 
Task.Support.EnhancedListeners - package Task.Support.EnhancedListeners
 
Task.Support.GUISupport - package Task.Support.GUISupport
 
TaskException - Class in Task
TaskException is thrown when at attempt is made to create & execute more than one underlying SwingWorker thread.
TaskException(TaskException.Type, String) - Constructor for class Task.TaskException
 
TaskException.Type - Enum in Task
enumeration of all the different types of TaskException that can be thrown
TaskExecutorAdapter<ReturnValueType> - Class in Task
TaskExecutorAdapter is a helper class, that has empty implementations of all the methods in TaskExecutorIF.
TaskExecutorAdapter() - Constructor for class Task.TaskExecutorAdapter
 
TaskExecutorIF<ReturnValueType> - Interface in Task
TaskExecutorIF is a simple interface that encapsulates the method needed by a functor which executes in the background - not on the EDT thread.
taskListChanged(TaskListChangeEvent) - Method in class Task.Manager.TaskListChangeListener
subclass must override this method
TaskListChangeEvent - Class in Task.Manager
TaskListChangeEvent encapsulates the change that's occured to the task list in TaskManager.
TaskListChangeEvent(TaskListChangeEvent.Type, AbstractTask) - Constructor for class Task.Manager.TaskListChangeEvent
 
TaskListChangeEvent.Type - Enum in Task.Manager
different types of task list change events...
TaskListChangeListener - Class in Task.Manager
TaskListChangeListener is an adapter class that you have to extend in order to respond to the container's task list changes, TaskManager.
TaskListChangeListener(boolean) - Constructor for class Task.Manager.TaskListChangeListener
 
TaskListChangeListener(boolean, EnhancedListener.EDTPolicy) - Constructor for class Task.Manager.TaskListChangeListener
 
TaskManager - Class in Task.Manager
TaskManager is a class that makes it easier for tasks to be created and a history of running and dead tasks maintained in an application.
TaskManager() - Constructor for class Task.Manager.TaskManager
default constructor
testMode_Enabled - Variable in class Task.NetworkTask
 
testMode_isOnline - Variable in class Task.NetworkTask
 
TheStringTokenizer - Class in Task.Support.CoreSupport
TheStringTokenizer is a replacement for java.util.TheStringTokenizer (because it sucks!).
TheStringTokenizer(String, String) - Constructor for class Task.Support.CoreSupport.TheStringTokenizer
 
TheStringTokenizer.Tokenizer - Class in Task.Support.CoreSupport
This class simply takes an input String or StringBuffer and tokenizes the input based on a delimiter String.
TheStringTokenizer.Tokenizer() - Constructor for class Task.Support.CoreSupport.TheStringTokenizer.Tokenizer
 
ThreadUtils - Class in Task.Support.GUISupport
ThreadUtils contains functions to help you ensure that code runs on the EDT
ThreadUtils() - Constructor for class Task.Support.GUISupport.ThreadUtils
 
TIFF_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
toArrayListFromObjectRay(Object[]) - Static method in class Task.Support.CoreSupport.Utils
 
Toaster - Class in org.swixml.contrib
 
Toaster() - Constructor for class org.swixml.contrib.Toaster
 
toByteArray() - Method in class Task.Support.CoreSupport.ByteBuffer
 
toBytes() - Method in class Task.Support.CoreSupport.ZipObject
simply returns the internal byte array used to store the ZipObject data in
toCompatibleImage(BufferedImage) - Static method in class Task.Support.GUISupport.ImageUtils
returns a copy of a non-compatible BufferedImage as a compatible one
toHexString() - Method in enum Task.Support.GUISupport.Colors
 
toInputStream() - Method in class Task.Support.CoreSupport.ZipObject
returns an InputStream that can read from the buffer of the ZipObject
toString(MapMarker...) - Static method in class org.swixml.contrib.gmap.MapLookup.MarkerUtils
 
toString() - Method in class org.swixml.contrib.gmap.MapMarker
 
toString() - Method in class Task.Manager.TaskListChangeEvent
 
toString() - Method in class Task.Support.CoreSupport.ByteBuffer
 
toString() - Method in class Task.Support.CoreSupport.ZipObject
returns a string representation of the ZipObject
toString() - Method in enum Task.Support.GUISupport.Colors
 
toString() - Method in enum Task.Support.GUISupport.FontUtils.FontNames
 
toString() - Method in enum Task.Support.GUISupport.FontUtils.FontStyles
 
toString() - Method in class Task.TaskException
 

U

UIHookAdapter - Class in Task.ProgressMonitor
UIHookAdapter contains some shared code between all the UIHook adapters.
UIHookAdapter() - Constructor for class Task.ProgressMonitor.UIHookAdapter
 
UIHookIF - Interface in Task.ProgressMonitor
UIHookIF is an interface that allows the apps to interact with a UI component that's displaying status information.
unregisterTask(AbstractTask) - Method in class Task.Manager.TaskManager
Unregisters the task, whether it's a daemon task or not.
updateRecieveStatus(int, int) - Method in interface Task.ProgressMonitor.UIHookIF
The RECIEVE status lets the UI know how much of the "recieve from service" operation has been completed.
updateRecieveStatusInUI(int, int) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
this is called in EDT, in your code. provides a RECV status update (progress bytes of total bytes)
updateSendStatus(int, int) - Method in interface Task.ProgressMonitor.UIHookIF
The SEND status lets the UI know how much of the "send to service" operation has been completed.
updateSendStatusInUI(int, int) - Method in class Task.ProgressMonitor.SwingUIHookAdapter
this is called in EDT, in your code. provides a SEND status update (progress bytes of total bytes)
UTF8 - Static variable in interface Task.Support.CoreSupport.ConstantsIF
 
Utils - Class in Task.Support.CoreSupport
Utils is a static function library to do mundane and repetitive, yet important functions that are used everywhere in the system.

V

Validate - Class in org.swixml.contrib.gmap
 
Validate() - Constructor for class org.swixml.contrib.gmap.Validate
 
valueOf(String) - Static method in enum Task.AbstractTask.PropertyNames
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.AbstractTask.State
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.AbstractTask.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.AutoShutdownSignals
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.Manager.TaskListChangeEvent.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.ProgressMonitor.InputStreamUIHookSupport.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.ProgressMonitor.ProgressMonitorUtils.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.ProgressMonitor.SwingUIHookAdapter.PropertyList
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.Support.EnhancedListeners.EnhancedListener.EDTPolicy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.Support.GUISupport.Colors
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.Support.GUISupport.FontUtils.FontNames
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.Support.GUISupport.FontUtils.FontStyles
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum Task.TaskException.Type
Returns the enum constant of this type with the specified name.
values() - Static method in enum Task.AbstractTask.PropertyNames
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.AbstractTask.State
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.AbstractTask.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.AutoShutdownSignals
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.Manager.TaskListChangeEvent.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.ProgressMonitor.InputStreamUIHookSupport.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.ProgressMonitor.ProgressMonitorUtils.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.ProgressMonitor.SwingUIHookAdapter.PropertyList
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.Support.EnhancedListeners.EnhancedListener.EDTPolicy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.Support.GUISupport.Colors
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.Support.GUISupport.FontUtils.FontNames
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.Support.GUISupport.FontUtils.FontStyles
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum Task.TaskException.Type
Returns an array containing the constants of this enum type, in the order they are declared.

W

WHITE_2GRAD - Static variable in class Task.Support.GUISupport.DrawingUtils
 
WINDOWS_BMP_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
writeExceptionToLog(Level, String, TaskException) - Method in class Task.Manager.TaskManager
 
writeToFile(String, String) - Static method in class Task.Support.CoreSupport.Utils
 
writeToFile(byte[], String) - Static method in class Task.Support.CoreSupport.Utils
 
writeToFile(ByteBuffer, String) - Static method in class Task.Support.CoreSupport.Utils
 

X

XML_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 

Z

ZIP_TYPE - Static variable in interface Task.Support.CoreSupport.MIMETypeConstantsIF
 
ZipObject<T extends java.io.Serializable> - Class in Task.Support.CoreSupport
ZipObject is a utility class for compressing and decompressing any object.
ZipObject(T) - Constructor for class Task.Support.CoreSupport.ZipObject
Constructor for a ZipObject given an uncompressed object.
ZipObjectException - Exception in Task.Support.CoreSupport
ZipObjectException is thrown by ZipObject during zip and unzip operations if something goes wrong.
ZipObjectException(String) - Constructor for exception Task.Support.CoreSupport.ZipObjectException
 
ZOOM_DEFAULT - Static variable in class org.swixml.contrib.gmap.MapLookup
 
ZOOM_KEY - Static variable in class org.swixml.contrib.gmap.MapLookup
 

_

_assertIsNotShutdown() - Method in class Task.AbstractTask
makes sure that AbstractTask.shutdown() has not been called yet.
_assertNoSwingWorkerCurrentlyActive() - Method in class Task.AbstractTask
makes sure that an existing SwingWorker is not already in flight. also if cleared for execution (SwingWorker creation).
_autoShutdownRay - Variable in class Task.AbstractTask
this holds all the AutoShutdownSignals types that this task will respond to
_boundProperties - Variable in class Task.AbstractTask
 
_boundProperties - Variable in class Task.ProgressMonitor.SwingUIHookAdapter
property change listener support for status property
_boundPropertiesLock - Variable in class Task.AbstractTask
 
_cancelScheduledFuture() - Method in class Task.RecurringNetworkTask
This will cancel any Runnables that are being scheduled by the executor service.
_createSwingWorker(BlockingQueue) - Method in class Task.NetworkTask
instantiates the underlying swing worker implementation...
_createSwingWorker() - Method in class Task.SimpleTask
instantiates the underlying swing worker implementation...
_exec - Variable in class Task.NetworkTask
 
_exec - Variable in class Task.SimpleTask
 
_execService - Variable in class Task.RecurringNetworkTask
 
_initScheduledFuture() - Method in class Task.RecurringNetworkTask
This method actually attaches a Runnable object + delay with the _execService.
_listeners - Variable in class Task.Support.EnhancedListeners.EnhancedListenerManager
 
_name - Variable in enum Task.Support.GUISupport.FontUtils.FontNames
 
_openGate(BlockingQueue) - Method in class Task.NetworkTask
This method releases the thread that's waiting on the BlockingQueue.
_refreshDelayInSec - Variable in class Task.RecurringNetworkTask
 
_scheduledFuture - Variable in class Task.RecurringNetworkTask
 
_shutdownCalled - Variable in class Task.AbstractTask
 
_state - Variable in class Task.AbstractTask
 
_status - Variable in class Task.AbstractTask
 
_swingWorker - Variable in class Task.NetworkTask
 
_swingWorker - Variable in class Task.SimpleTask
 
_taskHandler - Variable in class Task.NetworkTask
 
_taskManager - Variable in class Task.AbstractTask
 
_uiHook - Variable in class Task.ProgressMonitor.UIHookAdapter
 

A B C D E F G H I J L M N O P R S T U V W X Z _

Copyright © 2011. All Rights Reserved.