Class Insets


  • public class Insets
    extends java.lang.Object
    The java.awt.Insets clone
    Author:
    gianpiero.diblasi
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int bottom  
      int left  
      int right  
      int top  
    • Constructor Summary

      Constructors 
      Constructor Description
      Insets​(int top, int left, int bottom, int right)
      Creates the object
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • top

        public int top
      • left

        public int left
      • bottom

        public int bottom
      • right

        public int right
    • Constructor Detail

      • Insets

        public Insets​(int top,
                      int left,
                      int bottom,
                      int right)
        Creates the object
        Parameters:
        top - The top value
        left - The left value
        bottom - The bottom value
        right - The right value