jdk/src/share/classes/java/awt/GridBagConstraints.java
changeset 10419 12c063b39232
parent 7668 d4a77089c587
child 20172 f48935a247ec
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   651             GridBagConstraints c = (GridBagConstraints)super.clone();
   651             GridBagConstraints c = (GridBagConstraints)super.clone();
   652             c.insets = (Insets)insets.clone();
   652             c.insets = (Insets)insets.clone();
   653             return c;
   653             return c;
   654         } catch (CloneNotSupportedException e) {
   654         } catch (CloneNotSupportedException e) {
   655             // this shouldn't happen, since we are Cloneable
   655             // this shouldn't happen, since we are Cloneable
   656             throw new InternalError();
   656             throw new InternalError(e);
   657         }
   657         }
   658     }
   658     }
   659 
   659 
   660     boolean isVerticallyResizable() {
   660     boolean isVerticallyResizable() {
   661         return (fill == BOTH || fill == VERTICAL);
   661         return (fill == BOTH || fill == VERTICAL);