Uses of Class
java.awt.Graphics

Packages that use Graphics
com.jjt.utbeg   
java.awt   
java.beans   
 

Uses of Graphics in com.jjt.utbeg
 

Methods in com.jjt.utbeg with parameters of type Graphics
 void BorderPanel.paint(Graphics g)
           
 void SwathViewer.paint(Graphics g)
          Over-ridden Component-class method for drawing this Component on the screen.
private  void SwathViewer.drawSwath(Graphics g)
          Draws the swath onto the Graphics.
private  void SwathViewer.drawReferenceLines(Graphics g)
          Paints the swath size reference lines on the Graphics.
private  void SwathViewer.drawSources(Graphics g)
          Draws all the lines of sources onto the Graphics.
private  void SwathViewer.drawReceivers(Graphics g)
          Draws all the lines of receivers onto the Graphics.
private  void SwathViewer.drawSource(Graphics g, int x, int y)
          Draws a single source station at the specified point.
private  void SwathViewer.drawReceiver(Graphics g, int x, int y)
          Draws a single receiver station at the specified point.
 

Uses of Graphics in java.awt
 

Subclasses of Graphics in java.awt
 class Graphics2D
          This Graphics2D class extends the Graphics class to provide more sophisticated control over geometry, coordinate transformations, color management, and text layout.
 

Methods in java.awt that return Graphics
 Graphics Component.getGraphics()
          Creates a graphics context for this component.
abstract  Graphics PrintJob.getGraphics()
          Gets a Graphics object that will draw to the next page.
abstract  Graphics Graphics.create()
          Creates a new Graphics object that is a copy of this Graphics object.
 Graphics Graphics.create(int x, int y, int width, int height)
          Creates a new Graphics object based on this Graphics object, but with a new translation and clip area.
 Graphics LightweightPeer.getGraphics()
           
abstract  Graphics Image.getGraphics()
          Creates a graphics context for drawing to an off-screen image.
 

Methods in java.awt with parameters of type Graphics
 void Component.paint(Graphics g)
          Paints this component.
 void Component.update(Graphics g)
          Updates this component.
 void Component.paintAll(Graphics g)
          Paints this component and all of its subcomponents.
 void Component.print(Graphics g)
          Prints this component.
 void Component.printAll(Graphics g)
          Prints this component and all of its subcomponents.
(package private)  void Component.lightweightPrint(Graphics g)
          Simulates the peer callbacks into java.awt for printing of lightweight Components.
 void Container.paint(Graphics g)
          Paints the container.
 void Container.update(Graphics g)
          Updates the container.
 void Container.print(Graphics g)
          Prints the container.
 void Container.paintComponents(Graphics g)
          Paints each of the components in this container.
 void Container.printComponents(Graphics g)
          Prints each of the components in this container.
private  void Container.printOneComponent(Graphics g, Component comp)
           
(package private)  void Container.lightweightPrint(Graphics g)
          Simulates the peer callbacks into java.awt for printing of lightweight Containers.
 void Canvas.paint(Graphics g)
          This method is called to repaint this canvas.
 void LightweightPeer.paint(Graphics g)
           
 void LightweightPeer.print(Graphics g)
           
 void ScrollPane.printComponents(Graphics g)
          Prints the component in this scroll pane.
 java.awt.font.LineMetrics FontMetrics.getLineMetrics(String str, Graphics context)
          Returns the LineMetrics object for the specified String in the specified Graphics context.
 java.awt.font.LineMetrics FontMetrics.getLineMetrics(String str, int beginIndex, int limit, Graphics context)
          Returns the LineMetrics object for the specified String in the specified Graphics context.
 java.awt.font.LineMetrics FontMetrics.getLineMetrics(char[] chars, int beginIndex, int limit, Graphics context)
          Returns the LineMetrics object for the specified character array in the specified Graphics context.
 java.awt.font.LineMetrics FontMetrics.getLineMetrics(java.text.CharacterIterator ci, int beginIndex, int limit, Graphics context)
          Returns the LineMetrics object for the specified CharacterIterator in the specified Graphics context.
 java.awt.geom.Rectangle2D FontMetrics.getStringBounds(String str, Graphics context)
          Returns the bounds of the specified String in the specified Graphics context.
 java.awt.geom.Rectangle2D FontMetrics.getStringBounds(String str, int beginIndex, int limit, Graphics context)
          Returns the bounds of the specified String in the specified Graphics context.
 java.awt.geom.Rectangle2D FontMetrics.getStringBounds(char[] chars, int beginIndex, int limit, Graphics context)
          Returns the bounds of the specified array of characters in the specified Graphics context.
 java.awt.geom.Rectangle2D FontMetrics.getStringBounds(java.text.CharacterIterator ci, int beginIndex, int limit, Graphics context)
          Returns the bounds of the characters indexed in the specified CharacterIterator in the specified Graphics context.
 java.awt.geom.Rectangle2D FontMetrics.getMaxCharBounds(Graphics context)
          Returns the bounds for the character with the maximum bounds in the specified Graphics context.
private  java.awt.font.FontRenderContext FontMetrics.myFRC(Graphics context)
           
 

Uses of Graphics in java.beans
 

Methods in java.beans with parameters of type Graphics
 void PropertyEditorSupport.paintValue(Graphics gfx, Rectangle box)
          Paint a representation of the value into a given area of screen real estate.
 void PropertyEditor.paintValue(Graphics gfx, Rectangle box)
          Paint a representation of the value into a given area of screen real estate.