home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / JYYL4M (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  1.6 KB  |  36 lines

  1. package com.sun.java.swing.border;
  2.  
  3. import java.awt.Component;
  4. import java.awt.Graphics;
  5. import java.awt.Insets;
  6. import java.awt.Rectangle;
  7. import java.io.Serializable;
  8.  
  9. public abstract class AbstractBorder implements Border, Serializable {
  10.    public Insets getBorderInsets(Component c) {
  11.       return new Insets(0, 0, 0, 0);
  12.    }
  13.  
  14.    public Rectangle getInteriorRectangle(Component c, int x, int y, int width, int height) {
  15.       return getInteriorRectangle(c, this, x, y, width, height);
  16.    }
  17.  
  18.    public static Rectangle getInteriorRectangle(Component c, Border b, int x, int y, int width, int height) {
  19.       Insets insets;
  20.       if (b != null) {
  21.          insets = b.getBorderInsets(c);
  22.       } else {
  23.          insets = new Insets(0, 0, 0, 0);
  24.       }
  25.  
  26.       return new Rectangle(x + insets.left, y + insets.top, width - insets.right - insets.left, height - insets.top - insets.bottom);
  27.    }
  28.  
  29.    public boolean isBorderOpaque() {
  30.       return false;
  31.    }
  32.  
  33.    public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
  34.    }
  35. }
  36.