Serialized Form


Package CADI.Viewer

Class CADI.Viewer.Viewer extends javax.swing.JFrame implements Serializable

Serialized Fields

jFrameContentPane

javax.swing.JPanel jFrameContentPane
It is the root pane of the application.


menuBar

javax.swing.JMenuBar menuBar
Menu bar for the menu options.


toolBar

javax.swing.JToolBar toolBar
Tool bar where the buttons will be placed.


splitPane

javax.swing.JSplitPane splitPane
This pane will contain the controlPane on the left side and the displayPane on the right side. The width of the left size is fixed (see CONTROL_PANE_WIDTH) and it cannot be changed.


displayPane

DisplayPane displayPane
This pane is used to display the image.


statusBar

javax.swing.JPanel statusBar
This panel is used to display applications' status information.

See Also:
statusText, speedAndTargetMonitor, memoryMonitorBar

controlPane

javax.swing.JPanel controlPane
This panel is used to place the application controls (sliders, spinners, thumbnail, ...) and it is the left side of the splitPane.


backwardButton

javax.swing.JButton backwardButton
Backward button in the tool bar.


forwardButton

javax.swing.JButton forwardButton
Forward button in the tool bar.


URLTextField

javax.swing.JTextField URLTextField
Is a text field that is placed in the tool bar and it is used for input an URL.


componentList

javax.swing.JList componentList
This object is used to select the components of the image in the controlPane.


listModel

javax.swing.DefaultListModel listModel
It is the list model of the componentList.


resolutionLevelPanel

SliderAndSpinnerPanel resolutionLevelPanel
This object is used to control the resolution level slider and its associated spinner in the controlPane.


layerPanel

SliderAndSpinnerPanel layerPanel
This object is used to control the layer slider and its associated spinner in the controlPane.


qualityPanel

SliderAndSpinnerPanel qualityPanel
This object is used to control the quality level slider and its associated spinner in the controlPane.


controlAcceptButton

javax.swing.JButton controlAcceptButton
It is the accept button of the controlPane.


controlUndoButton

javax.swing.JButton controlUndoButton
It is the undo button of the controlPane.


thumbnailDisplay

ThumbnailDisplay thumbnailDisplay
This object contains a thumbnail of the image which is being displayed in the displayPane.


thumbnailData

ImageData thumbnailData
This object contains the thumbnail image to be displayed on the thumbnailDisplay.


openURL

javax.swing.JMenuItem openURL
It is the item "Open URL" of the menu "File". It opens the openURLDialog where the target, server and port data will be introduced.


openImage

javax.swing.JMenuItem openImage
It is the item "Open Image" of the menu "File" and it opens a local image.


closeImage

javax.swing.JMenuItem closeImage
It is the item "Close image" of the menu "File"


closeSession

javax.swing.JMenuItem closeSession
It is the item "Close session" of the menu "File"


saveAs

javax.swing.JMenuItem saveAs
It is the item "Save as" of the menu "File" and it allows to save the actual image.


saveCache

javax.swing.JMenuItem saveCache
Is the item "Save cache" of the menu "File" and it allows to save the content of the client cache.


exit

javax.swing.JMenuItem exit
It is the item "Exit" of the menu "File" and it exits from the application.


preferences

javax.swing.JMenuItem preferences
It is the item "Preferences" of the menu "Edit". It opens a window where the client parameters.


lookAndFeel

javax.swing.JMenuItem lookAndFeel
It is the item "Look and Feel" of the menu "Edit". It opens a window where the application's look and feel can be changed.


automatic

javax.swing.JCheckBox automatic
It is the item "Automatic" of the menu "Edit". It allows to choose the automatic image recovering.


imageParameters

javax.swing.JMenuItem imageParameters
It is the item "Image parameters" of the menu "Tools". It opens a frame (see showImageParameters()) where the image data will be shown.


frameSizeUpMenuItem

javax.swing.JMenuItem frameSizeUpMenuItem
It is the item "Frame size up" of the menu "Tools". It increases the frame size of the displayed image.


frameSizeDownMenuItem

javax.swing.JMenuItem frameSizeDownMenuItem
It is the item "Frame size down" of the menu "Tools". It decreases the frame size of the displayed image.


layerUpMenuItem

javax.swing.JMenuItem layerUpMenuItem
It is the item "Layer up" of the menu "Tools". It increases the quality layer of the displayed image.


layerDownMenuItem

javax.swing.JMenuItem layerDownMenuItem
It is the item "Layer up" of the menu "Tools". It decreases the quality layer of the displayed image.


statusText

StatusText statusText
This object represent the status text of the status bar.


speedAndTargetMonitor

SpeedAndTargetMonitor speedAndTargetMonitor
This object is used to monitor the speed of the transmission and amount of recieved bytes in the status bar.


memoryMonitorBar

MemoryMonitorBar memoryMonitorBar
This object is used to monitor the memory consumption as a progress bar in the status bar.


server

java.lang.String server
Contains the server name where the image are get from.


port

int port
It is the port number of the server.

See Also:
server

proxyServer

java.lang.String proxyServer
Is the name of the proxy server, if it is used.


proxyPort

int proxyPort
Is the port of the proxy.

See Also:
server

target

java.lang.String target
It is the resource name (an image).


jpipClient

Client jpipClient
This object is a JPIP client that will be used to get images from the server and to decompress them.


clientProperties

ClientProperties clientProperties
This object contains the user preferences to be used by the JPIP client. It values are set through the preferences menu item.


url

java.lang.String url
Contains the url that has been put in the URLTextField by the user, or the latest requested URL to be displayed in the URLTextField.


urls

java.util.ArrayList<E> urls

indexOfURL

int indexOfURL

components

int[] components
Contains the indixes of the image component which are being displayed.


resolutionLevel

int resolutionLevel
Is the image resolution level that is being displayed.


layer

int layer
Is the highest achieved layer of the displayed image.


quality

int quality
Is the quality, in percentage, of the displayed image.


imageData

ImageData imageData
This object contains the image that is being displayed in the displayPane.


bufImage

java.awt.image.BufferedImage bufImage

fImagePixels

float[] fImagePixels

openURLDialog

OpenURLDialog openURLDialog
This object creates a frame where the user can write the target to be requested, the server and the server's port.


openImageDialog

OpenImageDialog openImageDialog
This object creates a frame where the user can write the image to be loaded.


automaticMode

boolean automaticMode
Indicates whether the automatic mode for recovering the image quality is or not set.

See Also:
automatic

imageEqualization

boolean imageEqualization

Package CADI.Viewer.Display

Class CADI.Viewer.Display.DisplayPane extends javax.swing.JPanel implements Serializable

Serialized Fields

parent

javax.swing.JFrame parent
Reference to the parent object.


width

int width
Width of the panel.


height

int height
Height of the panel.


image

java.awt.Image image
Image to be displayer


imageData

ImageData imageData

fsiz

int[] fsiz
Frame size


roff

int[] roff
Region offset


rsiz

int[] rsiz
Region size


thumbnailDisplay

ThumbnailDisplay thumbnailDisplay
Reference to the thumbnail display panel. It is used to update the panner, therefore, only the ThumbnailDisplay.movePanner(int, int, int, int, int, int) method is used.


action

int action
Indicates the action which is doing on the displayer. The cursor type (see DisplayPane.cursor) will change depending of the value of this attribue. The allowed values are:


scroller

javax.swing.JScrollPane scroller
Is a scroll pane where the DisplayPane.displayer will be placed.


horizontalScrollBar

javax.swing.JScrollBar horizontalScrollBar
Horizontal scroll bar of the scroll pane

See Also:
DisplayPane.scroller

verticalScrollBar

javax.swing.JScrollBar verticalScrollBar
Vertical scroll bar of the scroll pane

See Also:
DisplayPane.scroller

displayer

DisplayPane.Displayer displayer
Is the panel where images will be displayed, i.e. the drawing area.


cursor

java.awt.Cursor cursor
Indicates the cursor type used into the image area. The allowed values are:
Cursor.MOVE_CURSOR for doing a panning
Cursor.DEFAULT_CURSOR for the default cursor
Cursor.CROSSHAIR_CURSOR for selecting a image region

The default cursor value is Cursor.DEFAULT_CURSOR


selectionArea

java.awt.Rectangle selectionArea
Contains the rectangle coordinates (upper left corner, width and height) of the selected area on the Image Display Area.


selectionAreaColor

java.awt.Color selectionAreaColor
Indicates the color that will be used when a window of interes is selected

See Also:
DisplayPane.selectionArea

panningOrigin

java.awt.Point panningOrigin
Contains the initial mouse coordinates when a panning is being done.


listener

DisplayPane.ScrollBarsAdjustmentListener listener
Scroll bars listener

Class CADI.Viewer.Display.ImageScrollBar extends javax.swing.JScrollBar implements Serializable

Class CADI.Viewer.Display.ThumbnailDisplay extends javax.swing.JPanel implements Serializable

Serialized Fields

parent

javax.swing.JFrame parent
Reference to the parent window.


width

int width
Width of the panel


height

int height
Height of the panel


bufferedImage

java.awt.image.BufferedImage bufferedImage
Is the thumbnail image.


panner

java.awt.Rectangle panner
Are the panner coordinates (origin and size).


pannerColor

java.awt.Color pannerColor
Is the color that will be used to display the panner.

See Also:
ThumbnailDisplay.panner

insets

java.awt.Insets insets
Insets of the panel.


dx1

int dx1
The x coordinate of the first corner of the destination rectangle.

See Also:
Graphics.drawImage(java.awt.Image, int, int, int, int, int, int, int, int, java.awt.image.ImageObserver)

dy1

int dy1
The y coordinate of the first corner of the destination rectangle.

See Also:
Graphics.drawImage(java.awt.Image, int, int, int, int, int, int, int, int, java.awt.image.ImageObserver)

dx2

int dx2
The x coordinate of the second corner of the destination rectangle.

See Also:
Graphics.drawImage(java.awt.Image, int, int, int, int, int, int, int, int, java.awt.image.ImageObserver)

dy2

int dy2
The y coordinate of the second corner of the destination rectangle.

See Also:
Graphics.drawImage(java.awt.Image, int, int, int, int, int, int, int, int, java.awt.image.ImageObserver)

sx1

int sx1
The x coordinate of the first corner of the source rectangle.

See Also:
Graphics.drawImage(java.awt.Image, int, int, int, int, int, int, int, int, java.awt.image.ImageObserver)

sy1

int sy1
The y coordinate of the first corner of the source rectangle.

See Also:
Graphics.drawImage(java.awt.Image, int, int, int, int, int, int, int, int, java.awt.image.ImageObserver)

sx2

int sx2
The x coordinate of the second corner of the source rectangle.

See Also:
Graphics.drawImage(java.awt.Image, int, int, int, int, int, int, int, int, java.awt.image.ImageObserver)

sy2

int sy2
The y coordinate of the second corner of the source rectangle.

See Also:
Graphics.drawImage(java.awt.Image, int, int, int, int, int, int, int, int, java.awt.image.ImageObserver)

setThumnailImage

boolean setThumnailImage
Indicates whether the thumbnail image is available or not. The image will be available if the ThumbnailDisplay.setThumbnail(BufferedImage) method has been called.


Package CADI.Viewer.Util

Class CADI.Viewer.Util.DisplayInfoFrame extends javax.swing.JFrame implements Serializable

Serialized Fields

parent

javax.swing.JFrame parent
Reference to the parent window.


width

int width
Width of the window.


height

int height
Height of the window.


title

java.lang.String title
Title of the window.


msg

java.lang.String msg
Message with the information to show.


buttonOK

javax.swing.JButton buttonOK
Button accept to close the window


scroller

javax.swing.JScrollPane scroller
Is the scroll pane where the message will be displayed.

Class CADI.Viewer.Util.DropDownButton extends javax.swing.JPanel implements Serializable

Serialized Fields

buttonDims

java.awt.Dimension buttonDims
The dimensions of the buttons.


buttons

javax.swing.JButton[] buttons
An array with the available buttons of the drop down button.


actionListener

java.awt.event.ActionListener actionListener
Is the action listener for the selected button.


selectedButton

javax.swing.JButton selectedButton
Is the button which is visible.


indexOfSelectedButton

int indexOfSelectedButton
Is the index of the DropDownButton.buttons array of the DropDownButton.selectedButton button.


selectorButton

javax.swing.JButton selectorButton
Selector button (shows an arrow).


popup

javax.swing.Popup popup
The popup where the DropDownButton.chooserPanel will be placed.


chooserPanel

javax.swing.JPanel chooserPanel
Button chooser panel.

Class CADI.Viewer.Util.LookAndFeelFrame extends javax.swing.JDialog implements Serializable

Serialized Fields

DEFAULT_LOOKANDFEEL

java.lang.String DEFAULT_LOOKANDFEEL

DEFAULT_LOOKANDFEEL_CLASSNAME

java.lang.String DEFAULT_LOOKANDFEEL_CLASSNAME

lookAndFeel

java.lang.String lookAndFeel
Specify the look and feel to use


lookAndFeelClassName

java.lang.String lookAndFeelClassName

lookAndFeelList

javax.swing.UIManager.LookAndFeelInfo[] lookAndFeelList

themes

LookAndFeelFrame.Themes themes

DEFAULT_THEME

java.lang.String DEFAULT_THEME

theme

javax.swing.plaf.metal.MetalTheme theme
If you choose the Metal L&F, you can also choose a theme. Specify the theme to use by defining the THEME constant Valid values are: "DefaultMetal", or "Ocean"


parent

javax.swing.JFrame parent

jDialogPane

java.awt.Container jDialogPane

lookAndFeelFrame

javax.swing.JPanel lookAndFeelFrame

buttonsPane

javax.swing.JPanel buttonsPane

acceptButton

javax.swing.JButton acceptButton

defaultButton

javax.swing.JButton defaultButton

cancelButton

javax.swing.JButton cancelButton

lookAndFeelButtons

javax.swing.JRadioButton[] lookAndFeelButtons

themeButtons

javax.swing.JRadioButton[] themeButtons

frameListener

LookAndFeelFrame.FrameListener frameListener

Class CADI.Viewer.Util.MemoryMonitorBar extends javax.swing.JPanel implements Serializable

Serialized Fields

label

javax.swing.JLabel label
Label to print the text.


width

int width
Width of the panel.


height

int height
Height of the panel.

Class CADI.Viewer.Util.OpenImageDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

parent

javax.swing.JFrame parent
The owner of this window.


fileName

java.lang.String fileName
Image file name.


zSize

int zSize

ySize

int ySize

xSize

int xSize

sampleType

java.lang.Class<T> sampleType

byteOrder

int byteOrder

RGBComponents

boolean RGBComponents

width

int width
Width of the window.


height

int height
Height of the window.


formPane

javax.swing.JPanel formPane
Pane where the #targetBox, #serverBox, and #portBox will be p.


fileNameBox

javax.swing.Box fileNameBox
Box where the target line is placed.


targetField

javax.swing.JTextField targetField
Text field to input the target.


imageGeometryBox1

javax.swing.Box imageGeometryBox1

zSizeText

javax.swing.JTextField zSizeText

ySizeText

javax.swing.JTextField ySizeText

xSizeText

javax.swing.JTextField xSizeText

imageGeometryBox2

javax.swing.Box imageGeometryBox2

sampleTypeBox

javax.swing.JComboBox sampleTypeBox

byteOrderBox

javax.swing.JComboBox byteOrderBox

rgbBox

javax.swing.JComboBox rgbBox

buttonsPane

javax.swing.JPanel buttonsPane
Panel where the buttons will be placed.


acceptButton

javax.swing.JButton acceptButton
Accept button


cancelButton

javax.swing.JButton cancelButton
Cancel button


examineButton

javax.swing.JButton examineButton
Examine button used to select an image

Class CADI.Viewer.Util.OpenURLDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

parent

javax.swing.JFrame parent
The owner of this window.


target

java.lang.String target
The last target name.


server

java.lang.String server
The last server name.


port

int port
The last port number.


proxyServer

java.lang.String proxyServer
Is the server proxy, if it is used.


proxyPort

int proxyPort
Is the proxy port to be used.


width

int width
Width of the window.


height

int height
Height of the window.


serverPane

javax.swing.JPanel serverPane
Pane where the OpenURLDialog.targetBox, OpenURLDialog.serverBox, and OpenURLDialog.portBox will be p.


targetBox

javax.swing.Box targetBox
Box where the target line is placed.


serverBox

javax.swing.Box serverBox
Box where the server line is placed.


portBox

javax.swing.Box portBox
Box where the port number line is placed.


targetField

javax.swing.JTextField targetField
Text field to input the target.


serverField

javax.swing.JTextField serverField
Text field to input the server name.


portField

javax.swing.JTextField portField
Text field to input the port number.


proxyPane

javax.swing.JPanel proxyPane
Pane where the OpenURLDialog.proxyServerBox and OpenURLDialog.proxyPortBox boxes will be placed.


proxyServerBox

javax.swing.Box proxyServerBox
Box where the server line is placed.


proxyPortBox

javax.swing.Box proxyPortBox
Box where the port number line is placed.


proxyServerField

javax.swing.JTextField proxyServerField
Text field to input the server name.


proxyPortField

javax.swing.JTextField proxyPortField
Text field to input the port number.


buttonsPane

javax.swing.JPanel buttonsPane
Panel where the buttons will be placed.


acceptButton

javax.swing.JButton acceptButton
Accept button


cancelButton

javax.swing.JButton cancelButton
Cancel button

Class CADI.Viewer.Util.PreferencesFrame extends javax.swing.JDialog implements Serializable

Serialized Fields

owner

javax.swing.JFrame owner

jDialogPane

java.awt.Container jDialogPane

propertiesPane

javax.swing.JPanel propertiesPane

buttonsPane

javax.swing.JPanel buttonsPane

acceptButton

javax.swing.JButton acceptButton

defaultButton

javax.swing.JButton defaultButton

cancelButton

javax.swing.JButton cancelButton

propertiesListener

PreferencesFrame.PropertiesListener propertiesListener

clientProperties

ClientProperties clientProperties

selectSessionButtons

javax.swing.JRadioButton[] selectSessionButtons

selectSessionTypeButtons

javax.swing.JCheckBox[] selectSessionTypeButtons

sesionTypeObj

java.lang.Object sesionTypeObj

setUseSession

java.lang.reflect.Method setUseSession

setUseHTTPSession

java.lang.reflect.Method setUseHTTPSession

setUseHTTPTCPSession

java.lang.reflect.Method setUseHTTPTCPSession

isUseSession

java.lang.reflect.Method isUseSession

isUseHTTPSession

java.lang.reflect.Method isUseHTTPSession

isUseHTTPTCPSession

java.lang.reflect.Method isUseHTTPTCPSession

selectCheckBoxButtons

javax.swing.JCheckBox[] selectCheckBoxButtons

explicitWildcardButton

javax.swing.JRadioButton explicitWildcardButton

explicitNumberOfLayersButton

javax.swing.JRadioButton explicitNumberOfLayersButton

explicitNumberOfBytesButton

javax.swing.JRadioButton explicitNumberOfBytesButton

implicitWildcardButton

javax.swing.JRadioButton implicitWildcardButton

implicitIndexRangeButton

javax.swing.JRadioButton implicitIndexRangeButton

implicitNumberOfLayersButton

javax.swing.JRadioButton implicitNumberOfLayersButton

maxCacheSizeField

javax.swing.JTextField maxCacheSizeField

managementPolicyCheckButtons

javax.swing.JCheckBox[] managementPolicyCheckButtons

requestCacheObj

java.lang.Object requestCacheObj

setCacheForm

java.lang.reflect.Method setCacheForm

setWildcard

java.lang.reflect.Method setWildcard

setNumberOfLayers

java.lang.reflect.Method setNumberOfLayers

setNumberOfBytes

java.lang.reflect.Method setNumberOfBytes

setIndexRange

java.lang.reflect.Method setIndexRange

getCacheForm

java.lang.reflect.Method getCacheForm

isWildCard

java.lang.reflect.Method isWildCard

isNumberOfLayers

java.lang.reflect.Method isNumberOfLayers

isNumberOfBytes

java.lang.reflect.Method isNumberOfBytes

isIndexRange

java.lang.reflect.Method isIndexRange

localCacheObj

java.lang.Object localCacheObj

setManagementPolicy

java.lang.reflect.Method setManagementPolicy

setMaxCacheSize

java.lang.reflect.Method setMaxCacheSize

getManagementPolicy

java.lang.reflect.Method getManagementPolicy

getMaxCacheSize

java.lang.reflect.Method getMaxCacheSize

httpKeepAliveButton

javax.swing.JCheckBox httpKeepAliveButton

jptStreamButton

javax.swing.JRadioButton jptStreamButton

jppStreamButton

javax.swing.JRadioButton jppStreamButton

rawStreamButton

javax.swing.JRadioButton rawStreamButton

bufferLength

javax.swing.JTextField bufferLength

advancedObj

java.lang.Object advancedObj

setKeepAlive

java.lang.reflect.Method setKeepAlive

isKeepAlive

java.lang.reflect.Method isKeepAlive

logEnableButton

javax.swing.JCheckBox logEnableButton

textFormatButton

javax.swing.JRadioButton textFormatButton

xmlFormatButton

javax.swing.JRadioButton xmlFormatButton

logLevelInfo

javax.swing.JRadioButton logLevelInfo

logLevelWarning

javax.swing.JRadioButton logLevelWarning

logLevelError

javax.swing.JRadioButton logLevelError

consoleDestinationButton

javax.swing.JRadioButton consoleDestinationButton

fileDestinationButton

javax.swing.JRadioButton fileDestinationButton

fileNameTextFile

javax.swing.JTextField fileNameTextFile

chooserButton

javax.swing.JButton chooserButton

logObj

java.lang.Object logObj

setLogEnabled

java.lang.reflect.Method setLogEnabled

setLogLevel

java.lang.reflect.Method setLogLevel

setLogDestination

java.lang.reflect.Method setLogDestination

isLogEnabled

java.lang.reflect.Method isLogEnabled

useLogXMLFormat

java.lang.reflect.Method useLogXMLFormat

getLogLevel

java.lang.reflect.Method getLogLevel

getLogFileName

java.lang.reflect.Method getLogFileName

Class CADI.Viewer.Util.SliderAndSpinnerPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

label

java.lang.String label
The panel's label.


min

int min
The minimum allowed value.


max

int max
The maximum allowed value


value

int value
The current value.


stepSize

int stepSize
The difference between two consecutive values.


width

int width
Width of the panel.


slider

javax.swing.JSlider slider
The slider object.


spinner

javax.swing.JSpinner spinner
The spinner object.


changed

boolean changed
Used to pass information between the slider and the spinner objects.

Class CADI.Viewer.Util.SpeedAndTargetMonitor extends javax.swing.JPanel implements Serializable

Serialized Fields

obj

java.lang.Object obj
Class where the invocated method is.


getSpeed

java.lang.reflect.Method getSpeed
Method to invoke for getting the speed.


getDownloadedBytes

java.lang.reflect.Method getDownloadedBytes
Method to invoke for getting the download.


speedLabel

javax.swing.JLabel speedLabel
Label to print the speed.


targetLabel

javax.swing.JLabel targetLabel
Label to print the target.


speed

float speed
The speed average.


target

long target
Total target downloaded.

Class CADI.Viewer.Util.StatusText extends javax.swing.JPanel implements Serializable

Serialized Fields

text

java.lang.String text
String to be printed in the status bar.


label

javax.swing.JLabel label
Label where the text will be printed.

Class CADI.Viewer.Util.ThresholdsAndColorMaps extends javax.swing.JFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

owner

javax.swing.JFrame owner
Reference to the parent object.


obj

java.lang.Object obj
Class where the invocated method is.


imageData

ImageData imageData
Reference to the container of the displayed image.


rePaintImage

java.lang.reflect.Method rePaintImage
Method to invoke a repaint of the displayed image.


jFramePane

java.awt.Container jFramePane

mainPane

javax.swing.JPanel mainPane

formPane

javax.swing.JPanel formPane

histogramPane

javax.swing.JPanel histogramPane

thresholdsPane

javax.swing.JPanel thresholdsPane

maxThresholdBox

javax.swing.Box maxThresholdBox

minThresholdBox

javax.swing.Box minThresholdBox

maxThresholdPercentBox

javax.swing.Box maxThresholdPercentBox

minThresholdPercentBox

javax.swing.Box minThresholdPercentBox

maxThresholdAbsoluteBox

javax.swing.Box maxThresholdAbsoluteBox

minThresholdAbsoluteBox

javax.swing.Box minThresholdAbsoluteBox

maxThresholdPercentField

javax.swing.JTextField maxThresholdPercentField

minThresholdPercentField

javax.swing.JFormattedTextField minThresholdPercentField

maxThresholdAbsoluteField

javax.swing.JFormattedTextField maxThresholdAbsoluteField

minThresholdAbsoluteField

javax.swing.JTextField minThresholdAbsoluteField

buttonsPane

javax.swing.JPanel buttonsPane

acceptButton

javax.swing.JButton acceptButton

cancelButton

javax.swing.JButton cancelButton

applyButton

javax.swing.JButton applyButton

sliderPane

javax.swing.JPanel sliderPane

sl1

javax.swing.JSlider sl1

sl2

javax.swing.JSlider sl2

xMinField

javax.swing.JTextField xMinField

yMinField

javax.swing.JTextField yMinField

xMaxField

javax.swing.JTextField xMaxField

yMaxField

javax.swing.JTextField yMaxField

xMinCheck

javax.swing.JCheckBox xMinCheck

xMaxCheck

javax.swing.JCheckBox xMaxCheck

yMinCheck

javax.swing.JCheckBox yMinCheck

yMaxCheck

javax.swing.JCheckBox yMaxCheck

image

float[][][] image

histogram

int[][] histogram

amountFormat

java.text.NumberFormat amountFormat

maxvalue

int maxvalue

minvalue

int minvalue

checkBoxHistogramOperations

javax.swing.JCheckBox[] checkBoxHistogramOperations

Package GiciException

Class GiciException.ErrorException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
An error code.

Values are usually defined by the application which uses this class. If this parameter is not set, the value is -1.

Class GiciException.ParameterException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
An error code.

Values are usually defined by the application which uses this class. If this parameter is not set, the value is -1.

Class GiciException.WarningException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
An error code.

Values are usually defined by the application which uses this class. If this parameter is not set, the value is -1.



CADI - Copyright (C) 2007
This program 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 2 of the License, or (at your option) any later version.
This program 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.

Group on Interactive Coding of Images (GICI) (contact)