Class BlockQuote
java.lang.Object
|
+--AbstractBox
|
+--AbstractFlexibleBox
|
+--VerticalBoxStack
|
+--BlockQuote
- All Implemented Interfaces:
- Box, FlexibleBox
- public class BlockQuote
- extends VerticalBoxStack
A block-quote. This is just like a normal VerticalBoxStack
, except that there's a margin of 16 pixels at
each side. This gives it the appearense of a block, suitable for
quotes.
Method Summary |
void |
doLayout(java.awt.Graphics g,
javax.swing.JComponent c,
int w)
Runs through the child-boxes and asks them to do layout with
the same parameters as this method was called with. |
void |
drawAt(int x,
int y,
DocumentView v)
Draws the box with it's upper-left corner at (x ,
y ). |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
BlockQuote
public BlockQuote()
doLayout
public void doLayout(java.awt.Graphics g,
javax.swing.JComponent c,
int w)
- Description copied from class:
AbstractFlexibleBox
- Runs through the child-boxes and asks them to do layout with
the same parameters as this method was called with.
- Overrides:
doLayout
in class VerticalBoxStack
- Following copied from class:
AbstractFlexibleBox
- Parameters:
g
- the graphics context. Some boxes, like TextFragments,
need a graphics context before they can determine their width
and height.c
- the component into which the box will be drawn. An
ImageBox needs to know the component to calculate the width and
height.w
- the width available for to the box.
drawAt
public void drawAt(int x,
int y,
DocumentView v)
- Description copied from interface:
Box
- Draws the box with it's upper-left corner at (
x
,
y
).
- Overrides:
drawAt
in class VerticalBoxStack
- Following copied from interface:
Box
- Parameters:
v
- the DocumentView
that does the actual
drawing.x
- the x-coordinate of the upper-left corner.x
- the y-coordinate of the upper-left corner.