jdk/src/java.desktop/share/classes/javax/swing/text/ParagraphView.java
changeset 32865 f9cb6e427f9e
parent 30462 507bcb03c954
child 40719 4ae72a69bd3b
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
  1182             return (short)(super.getBottomInset() +
  1182             return (short)(super.getBottomInset() +
  1183                            ((minorRequest != null) ? minorRequest.preferred : 0) *
  1183                            ((minorRequest != null) ? minorRequest.preferred : 0) *
  1184                            lineSpacing);
  1184                            lineSpacing);
  1185         }
  1185         }
  1186 
  1186 
  1187         final static int SPACE_ADDON = 0;
  1187         static final int SPACE_ADDON = 0;
  1188         final static int SPACE_ADDON_LEFTOVER_END = 1;
  1188         static final int SPACE_ADDON_LEFTOVER_END = 1;
  1189         final static int START_JUSTIFIABLE = 2;
  1189         static final int START_JUSTIFIABLE = 2;
  1190         //this should be the last index in justificationData
  1190         //this should be the last index in justificationData
  1191         final static int END_JUSTIFIABLE = 3;
  1191         static final int END_JUSTIFIABLE = 3;
  1192 
  1192 
  1193         int justificationData[] = null;
  1193         int justificationData[] = null;
  1194     }
  1194     }
  1195 
  1195 
  1196 }
  1196 }