private TLabel getStatusLabel() { getStatus(); if ((_statusIcon == null) || (_statusIcon.getIconWidth() > 0) && (_statusIcon.getIconHeight() > 0)) { _status.setIcon(_statusIcon); _status.setToolTipText(_statusText); } return _status; }
private JLabel getTitleLabel() { if (_icon == null) { File iconFile = getIconFile(); if (iconFile != null) { _icon = new ViewerIcon(ICON_W, ICON_H, iconFile.getPath()); } if (_icon == null) { _icon = _java32; } } if ((_icon != null) && (_icon.getIconWidth() > 0) && (_icon.getIconHeight() > 0)) { _title.setIcon(_icon); } _title.setText(getTitleString()); return _title; }
public static void hasFocus(Component c, boolean hasFocus) { if (c instanceof TLabel) { ((TLabel) c).hasFocus(hasFocus); } }
private TLabel getSizeLabel() { getSize(); _size.setText(_sizeString); return _size; }
private TLabel getDateLabel() { getDate(); _date.setText(_dateString); return _date; }
private TLabel getTypeLabel() { _type.setText(getTypeString()); return _type; }
private TLabel getVendorLabel() { _vendor.setText(getVendorString()); return _vendor; }