| animatepanel |
| AnimateListener |
| AnimatePanelRenderer |
| AnimateTabHeaderRenderer |
| JAnimatePanel |
| JAnimateTab |
| JAnimateTabHeader |
| autocomplete |
| JAutoComboBox |
| JAutoTextField |
| dropdown |
| JDropDownButton |
| filechooser |
| AscFileFilter |
| FileChooserManager |
| JAscFileChooser |
| fontchooser |
| JFontChooser |
| gradient |
| QuickGradientPaint |
| hyperlink |
| HyperlinkMouseAdapter |
| HyperlinkUtil |
| JHyperlinkLabel |
| outlookpanel |
| JOutlookButton |
| JOutlookPanel |
| JOutlookTab |
| JOutlookTabHeader |
| OutlookButtonRenderer |
| OutlookScrollButtonRenderer |
| OutlookTabBodyRenderer |
| OutlookTabHeaderRenderer |
| outlookpanel.renderers |
| DefaultOutlookButtonRenderer |
| DefaultOutlookScrollButtonRenderer |
| quick |
| JQuickList |
| JQuickTable |
| JQuickTextArea |
| JQuickTree |
| QuickSearch |
| rotate |
| JVerticalButton |
| JVerticalLabel |
| JVerticalToggleButton |
| RotateConstants |
| sliderpanel |
| BorderPaint |
| BorderPaintContext |
| JSliderPanel |
| JSliderPanelContainer |
| SliderListener |
| SliderPanelBorder |
| SliderPanelGradientBorder |
| spantable |
| DefaultSpanTableModel |
| JSpanTable |
| SpanTableUI |
| TableCell |
| splashscreen |
| JSplashScreen |
| statusbar |
| JMemoryIndicator |
| table |
| DefaultRowComparator |
| FilteredTableModel |
| RowComparator |
| RowFilter |
| SortOrderConstants |
| SortedColumnInfo |
| SortedTableHeaderMouseListener |
| SortedTableHeaderRenderer |
| SortedTableModel |
| table.renderers |
| DefaultImageCellRenderer |
| DefaultTextCellRenderer |
| table.wrappers |
| DefaultImageWrapper |
| DefaultTextWrapper |
| tree |
| WideTreeCellEditor |
| treetable |
| DefaultTreeTableModel |
| JTreeTable |
| TreeTableModel |
| TreeTableNode |
| util |
| JAscDialog |
| JAscFrame |
| PopupMenuHelper |
| xmlbars |
| BasicAction |
| MenuToolBarManager |
| xmlbars.menubar |
| JAscCheckBoxMenuItem |
| JAscRadioButtonMenuItem |
| JIconicCheckBoxMenuItem |
| xmlbars.toolbar |
| JAscToolBar |
| JToolBarButton |
| JToolBarToggleButton |
| xmlbars.toolbar.layouts |
| ToolBarDockConstraints |
| ToolbarDockLayout |
|  |
com.smardec.asc.table.wrappers
Class DefaultImageWrapper
java.lang.Object
|
+--com.smardec.asc.table.wrappers.DefaultImageWrapper
- public class DefaultImageWrapper
- extends java.lang.Object
DefaultImageWrapper class is used by DefaultImageCellRenderer
as a container for image and its properties.
|
Constructor Summary |
DefaultImageWrapper(javax.swing.ImageIcon image,
java.lang.String pathToImage,
boolean fitCellRect,
boolean keepAspectRatio)
Constructs a DefaultImageWrapper with the specified image, path to image, fitCellRect
and keepAspectRatio properties. |
|
Method Summary |
|
javax.swing.ImageIcon |
getImage()
Returns image that holds by this wrapper. |
|
java.lang.String |
getPathToImage()
Returns path to image that wrapper keeps. |
|
boolean |
isFitCellRect()
Indicates whether the image should fit the cell. |
|
boolean |
isKeepAspectRatio()
|
| Methods inherited from class java.lang.Object |
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DefaultImageWrapper
public DefaultImageWrapper(javax.swing.ImageIcon image,
java.lang.String pathToImage,
boolean fitCellRect,
boolean keepAspectRatio)
- Constructs a
DefaultImageWrapper with the specified image, path to image, fitCellRect
and keepAspectRatio properties.
- Parameters:
- image -
- pathToImage -
- fitCellRect -
- keepAspectRatio -
getImage
public javax.swing.ImageIcon getImage()
- Returns image that holds by this wrapper.
- Returns:
- image that holds by this wrapper.
isKeepAspectRatio
public boolean isKeepAspectRatio()
- Returns:
true if image keep aspect ratio, false otherwise.
isFitCellRect
public boolean isFitCellRect()
- Indicates whether the image should fit the cell.
- Returns:
true if image fit the cell, false otherwise.
getPathToImage
public java.lang.String getPathToImage()
- Returns path to image that wrapper keeps.
- Returns:
- path to image that wrapper keeps.
|
|
|