Definition of Paint

Babylon English
paint
v. apply color to a surface; create a work of art with paint; make a design on a surface with paint; put makeup on; describe something in words; apply with a brush like paint
n. colored substance applied to surfaces; layer of dried pigment on a surface; cosmetic color applied to the face

Search Dictionary:
Search Web Search Dictionary



Paint definition was found in categories: Language, Idioms & Slang(9)  Computer & Internet(2)  Religion & Spirituality(2)  Science & Technology(2)  Entertainment & Music(4)  Encyclopedia(1)  

Paint Definition from Language, Idioms & Slang Dictionaries & Glossaries

Webster's Revised Unabridged Dictionary (1913)
Paint
(v. t.)
To practice the art of painting; as, the artist paints well.
  
(v. t.)
To form in colors a figure or likeness of on a flat surface, as upon canvas; to represent by means of colors or hues; to exhibit in a tinted image; to portray with paints; as, to paint a portrait or a landscape.
  
(v. t.)
To cover with coloring matter; to apply paint to; as, to paint a house, a signboard, etc.
  
(v. t.)
To color one's face by way of beautifying it.
  
(v. t.)
Fig.: To represent or exhibit to the mind; to describe vividly; to delineate; to image; to depict.
  
(v. t.)
Fig.: To color, stain, or tinge; to adorn or beautify with colors; to diversify with colors.
  
(n.)
The same prepared with a vehicle, as oil, water with gum, or the like, for application to a surface.
  
(n.)
A pigment or coloring substance.
  
(n.)
A cosmetic; rouge.
  

WordNet 2.0
paint

Noun
1. a substance used as a coating to protect or decorate a surface (especially a mixture of pigment suspended in a liquid); dries to form a hard coating
(hypernym) coating, coat
(hyponym) acrylic, acrylic paint
(substance-meronym) pigment
2. (basketball) a space (including the foul line) in front of the basket at each end of a basketball court; usually painted a different color from the rest of the court; "he hit a jump shot from the top of the key"; "he dominates play in the paint"
(synonym) key
(hypernym) space
(part-holonym) basketball court
(part-meronym) foul line
(classification) basketball, basketball game, hoops
3. makeup consisting of a pink or red powder applied to the cheeks
(synonym) rouge, blusher
(hypernym) makeup, make-up, war paint

Verb
1. make a painting; "he painted all day in the garden"; "He painted a painting of the garden"
(hypernym) create
(hyponym) finger-paint
(classification) art, artistic creation, artistic production
2. apply paint to; coat with paint; "We painted the rooms yellow"
(hypernym) coat, surface
(hyponym) grain
3. make a painting of; "He painted his mistress many times"
(hypernym) represent, interpret
(hyponym) repaint
(classification) art, artistic creation, artistic production
4. apply a liquid to; e.g., paint the gutters with linseed oil
(hypernym) cover
(hyponym) repaint

The Phrase Finder
A picture paints a thousand words
Meaning
A picture tells a story as well as a large amount of descriptive text.
Origin
The original quotation is 'One picture is worth ten thousand words', Frederick R. Barnard in Printer's Ink, 8 Dec 1921 retelling a Chinese proverb.

Paint the town red
Meaning
Engage in a wild spree.
Origin
The allusion is to the kind of riotous behaviour that results in much red blood being spilt.

To gild refined gold, to paint the lily
Meaning
Usually misquoted as 'to gild the lily'.
Origin
From Shakespeare's King John.

Australian Slang
War paint
women's cosmetics

Anagram
paint
inapt

hEnglish - advanced version
paint

paint
\paint\, v. t.
1. to practice the art of painting; as, the artist paints well.
2. to color one's face by way of beautifying it. let her paint an inch thick.
paint
\paint\ (pānt), v. t. [imp. & p. p. painted; p. pr. & vb. n. painting.] [oe. peinten, fr. f. peint, p. p. of peindre to paint, fr. l. pingere, pictum; cf. gr. poiki`los many-colored, skr. piç to adorn. cf. depict, picture, pigment, pint.] 1. to cover with coloring matter; to apply paint to; as, to paint a house, a signboard, etc. jezebel painted her face and tired her head. --2 kings ix. 30.
2. fig.: to color, stain, or tinge; to adorn or beautify with colors; to diversify with colors. not painted with the crimson spots of blood. cuckoo buds of yellow hue do paint the meadows with delight.
3. to form in colors a figure or likeness of on a flat surface, as upon canvas; to represent by means of colors or hues; to exhibit in a tinted image; to portray with paints; as, to paint a portrait or a landscape.
4. fig.: to represent or exhibit to the mind; to describe vividly; to delineate; to image; to depict. disloyal? the word is too good to paint out her wickedness. if folly grow romantic, i must paint it.


  similar words(11) 




 paint indian 
 poster paint 
 mineral paint 
 luminous paint 
 rubber-base paint 
 indian paint 
 gold paint 
 water-base paint 
 paint a picture 
 latex paint 
 war paint 

Concise English-Irish Dictionary v. 1.1
paint
péint

English Phonetics

JM Welsh <=> English Dictionary
Paent
Paent = n. paint; colour


Paint Definition from Computer & Internet Dictionaries & Glossaries

Computer Abbreviations v1.5
PAINT
MacPaint Bitmap Graphic

JDK Doc(JAVA)
Paint
- interface java.awt..Paint 
public interface Paint extends Transparency 
public PaintContext createContext (ColorModel  cm, Rectangle  deviceBounds, Rectangle2D  userBounds, AffineTransform  xform, RenderingHints  hints)
This Paint interface defines how color patterns can be generated for operations. A class implementing the Paint interface is added to the Graphics2D context in order to define the color pattern used by the draw and fill methods.

paint(Graphics)
- Method in class java.awt.Component 
public void paint (Graphics  g)
Paints this component. This method is called when the contents of the component should be painted in response to the component first being shown or damage needing repair. The clip rectangle in the Graphics parameter will be set to the area which needs to be painted.Parameters: g - The graphics context to use for painting.Since: JDK1.0See Also:  update(java.awt.Graphics)

paint(Graphics) *10
- Method in interface javax.swing.text.Caret 
public void paint (Graphics  g)
Renders the caret.Parameters: g - the graphics context

paint(Graphics) *11
- Method in class javax.swing.text.DefaultCaret 
public void paint (Graphics  g)
Renders the caret as a vertical line. If this is reimplemented the damage method should also be reimplemented as it assumes the shape of the caret is a vertical line. Sets the caret color to the value returned by getCaretColor(). If there are multiple text directions present in the associated document, a flag indicating the caret bias will be rendered. This will occur only if the associated document is a subclass of AbstractDocument and there are multiple bidi levels present in the bidi element structure (i.e. the text has multiple directions associated with it).Specified by:  paint in interface Caret Parameters: g - the graphics contextSee Also:  damage(java.awt.Rectangle)

paint(Graphics) *12
- Method in class javax.swing.text.DefaultHighlighter 
public void paint (Graphics  g)
Renders the highlights.Parameters: g - the graphics context

paint(Graphics) *13
- Method in class javax.swing.tree.DefaultTreeCellEditor.EditorContainer 
public void paint (Graphics  g)
Overrides Container.paint to paint the node's icon and use the selection color for the background.Overrides: paint in class Container Tags copied from class: Container  Parameters: g - the specified Graphics windowSee Also:  Component.update(java.awt.Graphics)

paint(Graphics) *14
- Method in class javax.swing.tree.DefaultTreeCellRenderer 
public void paint (Graphics  g)
Paints the value. The background is filled based on selected.Overrides: paint in class JComponent Tags copied from class: JComponent  See Also:  JComponent.paintComponent(java.awt.Graphics) , JComponent.paintBorder(java.awt.Graphics) , JComponent.paintChildren(java.awt.Graphics) , JComponent.getComponentGraphics(java.awt.Graphics) , JComponent.repaint(long, int, int, int, int)

paint(Graphics) *15
- Method in class javax.swing.plaf.basic.BasicSplitPaneDivider 
public void paint (Graphics  g)
Paints the divider.Overrides: paint in class Container Tags copied from class: Container  Parameters: g - the specified Graphics windowSee Also:  Component.update(java.awt.Graphics)

paint(Graphics) *16
- Method in class javax.swing.plaf.basic.BasicToolBarUI.DragWindow 
public void paint (Graphics  g)
Description copied from class: Container  Paints the container. This forwards the paint to any lightweight components that are children of this container. If this method is reimplemented, super.paint(g) should be called so that lightweight components are properly rendered. If a child component is entirely clipped by the current clipping setting in g, paint() will not be forwarded to that child.Overrides: paint in class Container Tags copied from class: Container  Parameters: g - the specified Graphics windowSee Also:  Component.update(java.awt.Graphics)

paint(Graphics) *17
- Method in class javax.swing.plaf.basic.BasicInternalFrameTitlePane.SystemMenuBar 


paint(Graphics) *18
- Method in class javax.swing.plaf.basic.BasicArrowButton 
public void paint (Graphics  g)
Description copied from class: JComponent  This method is invoked by Swing to draw components. Applications should not invoke paint directly, but should instead use the repaint method to schedule the component for redrawing. This method actually delegates the work of painting to three protected methods: paintComponent, paintBorder, and paintChildren. They're called in the order listed to ensure that children appear on top of component itself. Generally speaking, the component and its children should not paint in the insets area allocated to the border. Subclasses can just override this method, as always. A subclass that just wants to specialize the UI (look and feel) delegates paint method should just override paintComponent.Overrides: paint in class JComponent Tags copied from class: JComponent  See Also:  JComponent.paintComponent(java.awt.Graphics) , JComponent.paintBorder(java.awt.Graphics) , JComponent.paintChildren(java.awt.Graphics) , JComponent.getComponentGraphics(java.awt.Graphics) , JComponent.repaint(long, int, int, int, int)

paint(Graphics) *19
- Method in class javax.swing.plaf.metal.MetalScrollButton 
public void paint (Graphics  g)
Description copied from class: JComponent  This method is invoked by Swing to draw components. Applications should not invoke paint directly, but should instead use the repaint method to schedule the component for redrawing. This method actually delegates the work of painting to three protected methods: paintComponent, paintBorder, and paintChildren. They're called in the order listed to ensure that children appear on top of component itself. Generally speaking, the component and its children should not paint in the insets area allocated to the border. Subclasses can just override this method, as always. A subclass that just wants to specialize the UI (look and feel) delegates paint method should just override paintComponent.Overrides: paint in class BasicArrowButton Tags copied from class: JComponent  See Also:  JComponent.paintComponent(java.awt.Graphics) , JComponent.paintBorder(java.awt.Graphics) , JComponent.paintChildren(java.awt.Graphics) , JComponent.getComponentGraphics(java.awt.Graphics) , JComponent.repaint(long, int, int, int, int)

paint(Graphics) *2
- Method in class java.awt.Container 
public void paint (Graphics  g)
Paints the container. This forwards the paint to any lightweight components that are children of this container. If this method is reimplemented, super.paint(g) should be called so that lightweight components are properly rendered. If a child component is entirely clipped by the current clipping setting in g, paint() will not be forwarded to that child.Overrides: paint in class Component Parameters: g - the specified Graphics windowSee Also:  Component.update(java.awt.Graphics)

paint(Graphics) *3
- Method in class java.awt.Canvas 
public void paint (Graphics  g)
This method is called to repaint this canvas. Most applications that subclass Canvas should override this method in order to perform some useful operation. The paint method provided by Canvas redraws this canvas's rectangle in the background color. The graphics context's origin (0, 0) is the top-left corner of this canvas. Its clipping region is the area of the context.Overrides: paint in class Component Parameters: g - the graphics context.See Also:  Graphics

paint(Graphics) *4
- Method in class javax.swing.JComponent 
public void paint (Graphics  g)
This method is invoked by Swing to draw components. Applications should not invoke paint directly, but should instead use the repaint method to schedule the component for redrawing. This method actually delegates the work of painting to three protected methods: paintComponent, paintBorder, and paintChildren. They're called in the order listed to ensure that children appear on top of component itself. Generally speaking, the component and its children should not paint in the insets area allocated to the border. Subclasses can just override this method, as always. A subclass that just wants to specialize the UI (look and feel) delegates paint method should just override paintComponent.Overrides: paint in class Container See Also:  paintComponent(java.awt.Graphics) , paintBorder(java.awt.Graphics) , paintChildren(java.awt.Graphics) , getComponentGraphics(java.awt.Graphics) , repaint(long, int, int, int, int)

paint(Graphics) *5
- Method in class javax.swing.JLayeredPane 
public void paint (Graphics  g)
Paints this JLayeredPane within the specified graphics context.Overrides: paint in class JComponent Parameters: g - the Graphics context within which to paint

paint(Graphics) *6
- Method in class javax.swing.JViewport 
public void paint (Graphics  g)
Depending on whether the backingStore is enabled, either paint the image through the backing store or paint just the recently exposed part, using the backing store to "blit" the remainder. The term "blit" is the pronounced version of the PDP-10 BLT (BLock Transfer) instruction, which copied a block of bits. (In case you were curious.) Overrides: paint in class JComponent Parameters: g - the Graphics context within which to paint

paint(Graphics) *7
- Method in class javax.swing.CellRendererPane 
public void paint (Graphics  g)
Shouldn't be called.Overrides: paint in class Container Tags copied from class: Container  Parameters: g - the specified Graphics windowSee Also:  Component.update(java.awt.Graphics)

paint(Graphics) *8
- Method in class javax.swing.colorchooser.AbstractColorChooserPanel 
public void paint (Graphics  g)
Description copied from class: JComponent  This method is invoked by Swing to draw components. Applications should not invoke paint directly, but should instead use the repaint method to schedule the component for redrawing. This method actually delegates the work of painting to three protected methods: paintComponent, paintBorder, and paintChildren. They're called in the order listed to ensure that children appear on top of component itself. Generally speaking, the component and its children should not paint in the insets area allocated to the border. Subclasses can just override this method, as always. A subclass that just wants to specialize the UI (look and feel) delegates paint method should just override paintComponent.Overrides: paint in class JComponent Tags copied from class: JComponent  See Also:  JComponent.paintComponent(java.awt.Graphics) , JComponent.paintBorder(java.awt.Graphics) , JComponent.paintChildren(java.awt.Graphics) , JComponent.getComponentGraphics(java.awt.Graphics) , JComponent.repaint(long, int, int, int, int)

paint(Graphics) *9
- Method in interface javax.swing.text.Highlighter 
public void paint (Graphics  g)
Renders the highlights.Parameters: g - the graphics context.

paint(Graphics, JComponent)
- Method in class javax.swing.plaf.ComponentUI 
public void paint (Graphics  g, JComponent  c)


paint(Graphics, JComponent) *10
- Method in class javax.swing.plaf.basic.BasicSliderUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *11
- Method in class javax.swing.plaf.basic.BasicToolTipUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *12
- Method in class javax.swing.plaf.basic.BasicSplitPaneUI 
public void paint (Graphics  g, JComponent  jc)
Messaged to paint the look and feel.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *13
- Method in class javax.swing.plaf.basic.BasicButtonUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *14
- Method in class javax.swing.plaf.basic.BasicToggleButtonUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class BasicButtonUI

paint(Graphics, JComponent) *15
- Method in class javax.swing.plaf.basic.BasicProgressBarUI 
public void paint (Graphics  g, JComponent  c)
All purpose paint method that should do the right thing for almost all linear progress bars. By setting a few values in the defaults table, things should work just fine to paint your progress bar. Naturally, override this if you are making a circular or semi-circular progress bar.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *16
- Method in class javax.swing.plaf.basic.BasicRadioButtonUI 
public void paint (Graphics  g, JComponent  c)
paint the radio buttonOverrides: paint in class BasicToggleButtonUI

paint(Graphics, JComponent) *17
- Method in class javax.swing.plaf.basic.BasicPopupMenuSeparatorUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class BasicSeparatorUI

paint(Graphics, JComponent) *18
- Method in class javax.swing.plaf.basic.BasicTreeUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *19
- Method in class javax.swing.plaf.basic.BasicTableHeaderUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *2
- Method in class javax.swing.plaf.basic.BasicTextUI 
public final void paint (Graphics  g, JComponent  c)
Paints the interface. This is routed to the paintSafely method under the guarantee that the model won't change from the view of this thread while it's rendering (if the associated model is derived from AbstractDocument). This enables the model to potentially be updated asynchronously.Overrides: paint in class ComponentUI Parameters: g - the graphics context - the editor componentc - the editor component

paint(Graphics, JComponent) *20
- Method in class javax.swing.plaf.basic.BasicScrollBarUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *21
- Method in class javax.swing.plaf.basic.BasicLabelUI 
public void paint (Graphics  g, JComponent  c)
Paint the label text in the foreground color, if the label is opaque then paint the entire background with the background color. The Label text is drawn by paintEnabledText() or paintDisabledText(). The locations of the label parts are computed by layoutCL.Overrides: paint in class ComponentUI See Also:  paintEnabledText(javax.swing.JLabel, java.awt.Graphics, java.lang.String, int, int) , paintDisabledText(javax.swing.JLabel, java.awt.Graphics, java.lang.String, int, int) , layoutCL(javax.swing.JLabel, java.awt.FontMetrics, java.lang.String, javax.swing.Icon, java.awt.Rectangle, java.awt.Rectangle, java.awt.Rectangle)

paint(Graphics, JComponent) *22
- Method in class javax.swing.plaf.basic.BasicComboBoxUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *23
- Method in class javax.swing.plaf.basic.BasicScrollPaneUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *24
- Method in class javax.swing.plaf.metal.MetalTabbedPaneUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class BasicTabbedPaneUI

paint(Graphics, JComponent) *25
- Method in class javax.swing.plaf.metal.MetalSeparatorUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class BasicSeparatorUI

paint(Graphics, JComponent) *26
- Method in class javax.swing.plaf.metal.MetalPopupMenuSeparatorUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class MetalSeparatorUI

paint(Graphics, JComponent) *27
- Method in class javax.swing.plaf.metal.MetalComboBoxUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class BasicComboBoxUI

paint(Graphics, JComponent) *28
- Method in class javax.swing.plaf.metal.MetalRadioButtonUI 
public void paint (Graphics  g, JComponent  c)
Description copied from class: BasicRadioButtonUI  paint the radio buttonOverrides: paint in class BasicRadioButtonUI

paint(Graphics, JComponent) *29
- Method in class javax.swing.plaf.metal.MetalToolTipUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class BasicToolTipUI

paint(Graphics, JComponent) *3
- Method in class javax.swing.plaf.basic.BasicDesktopPaneUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *30
- Method in class javax.swing.plaf.metal.MetalProgressBarUI 
public void paint (Graphics  g, JComponent  c)
The sole reason for this paint method to even be here is that the JLF/Metal ProgressBar has a bit of special highlighting that needs to get drawn. The core painting is defered to the BasicProgressBar's paint method.Overrides: paint in class BasicProgressBarUI

paint(Graphics, JComponent) *31
- Method in class javax.swing.plaf.metal.MetalTreeUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class BasicTreeUI

paint(Graphics, JComponent) *32
- Method in class javax.swing.plaf.multi.MultiColorChooserUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *33
- Method in class javax.swing.plaf.multi.MultiTabbedPaneUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *34
- Method in class javax.swing.plaf.multi.MultiViewportUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *35
- Method in class javax.swing.plaf.multi.MultiSliderUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *36
- Method in class javax.swing.plaf.multi.MultiToolBarUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *37
- Method in class javax.swing.plaf.multi.MultiTableUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *38
- Method in class javax.swing.plaf.multi.MultiMenuItemUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *39
- Method in class javax.swing.plaf.multi.MultiTextUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *4
- Method in class javax.swing.plaf.basic.BasicMenuItemUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *40
- Method in class javax.swing.plaf.multi.MultiToolTipUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *41
- Method in class javax.swing.plaf.multi.MultiProgressBarUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *42
- Method in class javax.swing.plaf.multi.MultiScrollPaneUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *43
- Method in class javax.swing.plaf.multi.MultiPanelUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *44
- Method in class javax.swing.plaf.multi.MultiListUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *45
- Method in class javax.swing.plaf.multi.MultiLabelUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *46
- Method in class javax.swing.plaf.multi.MultiSplitPaneUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *47
- Method in class javax.swing.plaf.multi.MultiOptionPaneUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *48
- Method in class javax.swing.plaf.multi.MultiComboBoxUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *49
- Method in class javax.swing.plaf.multi.MultiTableHeaderUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *5
- Method in class javax.swing.plaf.basic.BasicSeparatorUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *50
- Method in class javax.swing.plaf.multi.MultiMenuBarUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *51
- Method in class javax.swing.plaf.multi.MultiSeparatorUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *52
- Method in class javax.swing.plaf.multi.MultiFileChooserUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *53
- Method in class javax.swing.plaf.multi.MultiDesktopPaneUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *54
- Method in class javax.swing.plaf.multi.MultiScrollBarUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *55
- Method in class javax.swing.plaf.multi.MultiButtonUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *56
- Method in class javax.swing.plaf.multi.MultiPopupMenuUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *57
- Method in class javax.swing.plaf.multi.MultiTreeUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *58
- Method in class javax.swing.plaf.multi.MultiDesktopIconUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *59
- Method in class javax.swing.plaf.multi.MultiInternalFrameUI 
public void paint (Graphics  a, JComponent  b)
Call paint on each UI handled by this MultiUI.Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *6
- Method in class javax.swing.plaf.basic.BasicToolBarSeparatorUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class BasicSeparatorUI

paint(Graphics, JComponent) *7
- Method in class javax.swing.plaf.basic.BasicTableUI 
public void paint (Graphics  g, JComponent  c)
Paint a representation of the table instance that was set in installUI().Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *8
- Method in class javax.swing.plaf.basic.BasicTabbedPaneUI 
public void paint (Graphics  g, JComponent  c)
Overrides: paint in class ComponentUI

paint(Graphics, JComponent) *9
- Method in class javax.swing.plaf.basic.BasicListUI 
public void paint (Graphics  g, JComponent  c)
Paint the rows that intersect the Graphics objects clipRect. This method calls paintCell as necessary. Subclasses may want to override these methods.Overrides: paint in class ComponentUI See Also:  paintCell(java.awt.Graphics, int, java.awt.Rectangle, javax.swing.ListCellRenderer, javax.swing.ListModel, javax.swing.ListSelectionModel, int)

paint(Graphics, Shape)
- Method in class javax.swing.text.View 


paint(Graphics, Shape) *10
- Method in class javax.swing.text.html.ParagraphView 
public void paint (Graphics  g, Shape  a)
Renders using the given rendering surface and area on that surface. This is implemented to delgate to the superclass after stashing the base coordinate for tab calculations.Overrides: paint in class ParagraphView Parameters: g - the rendering surface to use - the allocated region to render intoa - the allocated region to render intoSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, Shape) *11
- Method in class javax.swing.text.html.BlockView 
public void paint (Graphics  g, Shape  allocation)
Renders using the given rendering surface and area on that surface. This is implemented to delegate to the css box painter to paint the border and background prior to the interior.Overrides: paint in class BoxView Parameters: g - the rendering surface to use - the allocated region to render intoallocation - the allocated region to render intoSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, Shape) *12
- Method in class javax.swing.text.html.ListView 
public void paint (Graphics  g, Shape  allocation)
Renders using the given rendering surface and area on that surface.Overrides: paint in class BlockView Parameters: g - the rendering surface to use - the allocated region to render intoallocation - the allocated region to render intoSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, Shape) *2
- Method in class javax.swing.text.IconView 
public void paint (Graphics  g, Shape  a)
Paints the icon. The real paint behavior occurs naturally from the association that the icon has with its parent container (the same container hosting this view), so this simply allows us to position the icon properly relative to the view. Since the coordinate system for the view is simply the parent containers, positioning the child icon is easy.Overrides: paint in class View Parameters: g - the rendering surface to use - the allocated region to render intoa - the allocated region to render intoSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, Shape) *3
- Method in class javax.swing.text.PlainView 
public void paint (Graphics  g, Shape  a)
Renders using the given rendering surface and area on that surface. The view may need to do layout and create child views to enable itself to render into the given allocation.Overrides: paint in class View Parameters: g - the rendering surface to use - the allocated region to render intoa - the allocated region to render intoSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, Shape) *4
- Method in class javax.swing.text.FieldView 
public void paint (Graphics  g, Shape  a)
Renders using the given rendering surface and area on that surface. The view may need to do layout and create child views to enable itself to render into the given allocation.Overrides: paint in class PlainView Parameters: g - the rendering surface to use - the allocated region to render intoa - the allocated region to render intoSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, Shape) *5
- Method in class javax.swing.text.LabelView 
public void paint (Graphics  g, Shape  a)
Renders a portion of a text style run.Overrides: paint in class View Parameters: g - the rendering surface to use - the allocated region to render intoa - the allocated region to render into

paint(Graphics, Shape) *6
- Method in class javax.swing.text.BoxView 


paint(Graphics, Shape) *7
- Method in class javax.swing.text.WrappedPlainView 
public void paint (Graphics  g, Shape  a)
Renders using the given rendering surface and area on that surface. This is implemented to stash the selection positions, selection colors, and font metrics for the nested lines to use.Overrides: paint in class BoxView Parameters: g - the rendering surface to use - the allocated region to render intoa - the allocated region to render intoSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, Shape) *8
- Method in class javax.swing.text.ComponentView 
public void paint (Graphics  g, Shape  a)
Paints a component view. The real paint behavior occurs naturally from the association that the component has with its parent container (the same container hosting this view), so this simply allows us to position the component properly relative to the view. Since the coordinate system for the view is simply the parent containers, positioning the child component is easy.Overrides: paint in class View Parameters: g - the graphics context - the shapea - the shapeSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, Shape) *9
- Method in class javax.swing.text.ParagraphView 
public void paint (Graphics  g, Shape  a)
Renders using the given rendering surface and area on that surface. This is implemented to delgate to the superclass after stashing the base coordinate for tab calculations.Overrides: paint in class BoxView Parameters: g - the rendering surface to use - the allocated region to render intoa - the allocated region to render intoSee Also:  View.paint(java.awt.Graphics, java.awt.Shape)

paint(Graphics, float, float, float, float, View)
- Method in class javax.swing.text.html.StyleSheet.BoxPainter 
public void paint (Graphics  g, float x, float y, float w, float h, View  v)
Paints the css box according to the attributes given. This should paint the border, padding, and background.Parameters: g - the rendering surface. - the x coordinate of the allocated area to render into.x - the x coordinate of the allocated area to render into. - the y coordinate of the allocated area to render into.y - the y coordinate of the allocated area to render into. - the width of the allocated area to render into.w - the width of the allocated area to render into. - the height of the allocated area to render into.h - the height of the allocated area to render into. - the view making the request. This is used to get the AttributeSet, and may be used to resolve percentage arguments.v - the view making the request. This is used to get the AttributeSet, and may be used to resolve percentage arguments.

paint(Graphics, float, float, float, float, View, int)
- Method in class javax.swing.text.html.StyleSheet.ListPainter 
public void paint (Graphics  g, float x, float y, float w, float h, View  v, int item)
Paints the css list decoration according to the attributes given.Parameters: g - the rendering surface. - the x coordinate of the list item allocationx - the x coordinate of the list item allocation - the y coordinate of the list item allocationy - the y coordinate of the list item allocation - the width of the list item allocationw - the width of the list item allocation - the height of the list item allocationh - the height of the list item allocation - the allocated area to paint into.s - the allocated area to paint into. - which list item is being painted. This is a number >= 0.item - which list item is being painted. This is a number >= 0.

paint(Graphics, int, int, Shape, JTextComponent)
- Method in interface javax.swing.text.Highlighter.HighlightPainter 
public void paint (Graphics  g, int p0, int p1, Shape  bounds, JTextComponent  c)
Renders the highlight.Parameters: g - the graphics context - the starting offset in the model >= 0p0 - the starting offset in the model >= 0 - the ending offset in the model >= p0p1 - the ending offset in the model >= p0 - the bounding box for the highlightbounds - the bounding box for the highlight - the editorc - the editor

paint(Graphics, int, int, Shape, JTextComponent) *2
- Method in class javax.swing.text.DefaultHighlighter.DefaultHighlightPainter 
public void paint (Graphics  g, int offs0, int offs1, Shape  bounds, JTextComponent  c)
Paints a highlight.Parameters: g - the graphics context - the starting model offset >= 0offs0 - the starting model offset >= 0 - the ending model offset >= offs1offs1 - the ending model offset >= offs1 - the bounding box for the highlightbounds - the bounding box for the highlight - the editorc - the editor


Paint Definition from Religion & Spirituality Dictionaries & Glossaries

Easton's Bible Dictionary
Paint
Jezebel "painted her face" (2 Kings 9:30); and the practice of painting the face and the eyes seems to have been common (Jer. 4:30; Ezek. 23:40). An allusion to this practice is found in the name of Job's daughter (42:14) Kerenhappuch (q.v.). Paintings in the modern sense of the word were unknown to the ancient Jews.

Smith's Bible Dictionary
Paint

(as a cosmetic). The use of cosmetic dyes has prevailed in all ages in eastern countries. We have abundant evidence of the practice of painting the eyes both in ancient Egypt and in Assyria; and in modern times no usage is more general. It does not appear, however, to have been by any means universal among the Hebrews. The notices of it are few; and in each instance it seems to have been used as a meretricious art, unworthy of a woman of high character. The Bible gives no indication of the substance out of which the dye was formed. The old versions agree in pronouncing the dye to have been produced from antimony. Antimony is still used for the purpose in Arabia and in Persia, but in Egypt the kohl is a root produced by burning either a kind of frankincense or the shells of almonds. The dye-stuff was moistened with oil and kept in a small jar. Whether the custom of staining the hands and feet, particularly the nails, now so prevalent in the past, was known to the Hebrews is doubtful. Painting as an art was not cultivated by the Hebrews, but they decorated their buildings with paint.
  


Paint Definition from Science & Technology Dictionaries & Glossaries

Dictionary of Automotive Terms
Paint
A liquid or paste consisting of a suspension of a pigment in oil or water, etc. When spread over a surface, it dries to form a hard, thin covering colored by the pigment. The primary purpose of paint is to help in the preventing of rusting. A secondary purpose is to provide a variety of color. Also see metallic paint and pyroxylin paint .

Technical English by wpv
Paint
The oldest and most limited Macintosh graphic file format, holding only black-and-white bit maps at 72 dpi. Paint files (file type PNTG) are limited to 8 by 10 inches.


Paint Definition from Entertainment & Music Dictionaries & Glossaries

american horse racing dictionary
paint
Counter-irritant used to increase blood supply, blood flow and to promote healing in the leg. A mild form of blistering.

English to Federation-Standard Golic Vulcan
Paint
kras, kras-tor

gambling
Paint
A Jack, Queen or King. Picture card. Face card

English - Klingon
paint
n. rItlh
v. ngoH - using fingers


Paint Definition from Encyclopedia Dictionaries & Glossaries

Wikipedia English - The Free Encyclopedia
Paint
Paint is any liquid, liquifiable, or mastic composition which after application to a substrate in a thin layer is converted to an opaque solid film.

Paint is used to protect, decorate (such as adding color), or add functionality to an object or surface by covering it with a pigmented coating. An example of protection is to retard corrosion of metal. An example of decoration is to add festive trim to a room interior. An example of added functionality is to modify light reflection or heat radiation of a surface. Another example of functionality would be the use of color to identify hazards or function of equipment and pipelines.


See more at Wikipedia.org...