| Methods from java.awt.Component: |
|---|
|
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, addNotify, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, bounds, checkImage, checkImage, contains, contains, createImage, createImage, createVolatileImage, createVolatileImage, deliverEvent, disable, dispatchEvent, doLayout, enable, enable, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getAccessibleContext, getAlignmentX, getAlignmentY, getBackground, getBaseline, getBaselineResizeBehavior, getBounds, getBounds, getColorModel, getComponentAt, getComponentAt, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeys, getFocusTraversalKeysEnabled, getFont, getFontMetrics, getForeground, getGraphics, getGraphicsConfiguration, getHeight, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getListeners, getLocale, getLocation, getLocation, getLocationOnScreen, getMaximumSize, getMinimumSize, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPreferredSize, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getSize, getToolkit, getTreeLock, getWidth, getX, getY, gotFocus, handleEvent, hasFocus, hide, imageUpdate, inside, invalidate, isBackgroundSet, isCursorSet, isDisplayable, isDoubleBuffered, isEnabled, isFocusCycleRoot, isFocusOwner, isFocusTraversable, isFocusable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isOpaque, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, layout, list, list, list, list, list, locate, location, lostFocus, minimumSize, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paint, paintAll, postEvent, preferredSize, prepareImage, prepareImage, print, printAll, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removeNotify, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, repaint, requestFocus, requestFocusInWindow, reshape, resize, resize, setBackground, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setEnabled, setFocusTraversalKeys, setFocusTraversalKeysEnabled, setFocusable, setFont, setForeground, setIgnoreRepaint, setLocale, setLocation, setLocation, setMaximumSize, setMinimumSize, setName, setPreferredSize, setSize, setSize, setVisible, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle, update, validate |
| Method from org.jfree.report.modules.gui.base.ReportProgressDialog Detail: |
public String getLayoutText() {
return layoutText;
}
Returns the layout text. This text describes the prepare phases of
the report processing. |
public String getMessage() {
return messageCarrier.getText();
}
Returns the current message. |
public String getOutputText() {
return outputText;
}
Returns the output text message. This text describes the export phases of
the report processing. |
protected final JLabel getPageCountMessage() {
return pageCountMessage;
}
Returns the current pagecount message component. |
protected final MessageFormat getPageMessageFormatter() {
return pageMessageFormatter;
}
Returns the current pass message component. |
protected final JLabel getPassCountMessage() {
return passCountMessage;
}
Returns the current pass message component. |
protected final MessageFormat getPassMessageFormatter() {
return passMessageFormatter;
}
Returns the current pass message component. |
protected final JLabel getRowCountMessage() {
return rowCountMessage;
}
Returns the current row message component. |
protected final MessageFormat getRowsMessageFormatter() {
return rowsMessageFormatter;
}
Returns the current pass message component. |
public void repaginationUpdate(RepaginationState state) {
final ScreenUpdateRunnable runnable = new ScreenUpdateRunnable
(state.getCurrentRow(), state.getMaxRow(), state.getPage(),
state.getPass(), state.isPrepare());
if (SwingUtilities.isEventDispatchThread())
{
runnable.run();
}
else
{
SwingUtilities.invokeLater(runnable);
}
}
Receives notification of a repagination update. |
public void setLayoutText(String layoutText) {
if (layoutText == null)
{
throw new NullPointerException("LayoutText must not be null.");
}
this.layoutText = layoutText;
}
Defines the layout text message. This text describes the prepare phases of
the report processing. |
public void setMessage(String message) {
messageCarrier.setText(message);
}
Defines the current message. |
public void setOutputText(String outputText) {
if (outputText == null)
{
throw new NullPointerException("OutputText must not be null.");
}
this.outputText = outputText;
}
Defines the output text message. This text describes the export phases of
the report processing. |
protected void updatePageMessage(int page) {
if (lastPage != page)
{
final Object[] parameters = new Object[]{new Integer(page)};
pageCountMessage.setText(pageMessageFormatter.format(parameters));
lastPage = page;
}
}
Updates the page message label if the current page has changed. |
protected void updatePassMessage(int pass,
boolean prepare) {
if (lastPass != pass)
{
lastPass = pass;
if (pass >= 0)
{
final Object[] parameters = new Object[]{new Integer(pass)};
passCountMessage.setText(passMessageFormatter.format(parameters));
}
else
{
final String message;
if (prepare)
{
message = getLayoutText();
}
else
{
message = getOutputText();
}
passCountMessage.setText(message);
}
}
}
Updates the pass message label if either the pass or prepare state changed.
The pass reflects the current processing level, one level for every function
dependency level. |
protected void updateRowsMessage(int rows,
int maxRows) {
if (maxRows != lastMaxRow)
{
lastMaxRowInteger = new Integer(maxRows);
lastMaxRow = maxRows;
}
final Object[] parameters = new Object[]{
new Integer(rows),
lastMaxRowInteger
};
rowCountMessage.setText(rowsMessageFormatter.format(parameters));
}
Updates the rows message label if either the rows or maxrows changed. |