Exemplo n.º 1
32
 private TLabel getStatusLabel() {
   getStatus();
   if ((_statusIcon == null)
       || (_statusIcon.getIconWidth() > 0) && (_statusIcon.getIconHeight() > 0)) {
     _status.setIcon(_statusIcon);
     _status.setToolTipText(_statusText);
   }
   return _status;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 3
0
 public static void hasFocus(Component c, boolean hasFocus) {
   if (c instanceof TLabel) {
     ((TLabel) c).hasFocus(hasFocus);
   }
 }
Exemplo n.º 4
0
 private TLabel getSizeLabel() {
   getSize();
   _size.setText(_sizeString);
   return _size;
 }
Exemplo n.º 5
0
 private TLabel getDateLabel() {
   getDate();
   _date.setText(_dateString);
   return _date;
 }
Exemplo n.º 6
0
 private TLabel getTypeLabel() {
   _type.setText(getTypeString());
   return _type;
 }
Exemplo n.º 7
0
 private TLabel getVendorLabel() {
   _vendor.setText(getVendorString());
   return _vendor;
 }