标签: java border insets
为什么以下方法不是静态的?
public Insets getBorderInsets(Component c)
它返回所提供Component的insets。但由于它不是静态的,我需要创建一个边框对象来调用它。有什么意义?我错过了什么吗?
应该使用它的方式:
Border b = BorderFactory.createRaisedBevelBorder(); Inset i = b.getBoderInsets(someComponent);