Пример #1
0
  public AttachmentsInspector(AttachmentContainer container) {
    super(
        "Attachments (" + container.getAttachmentCount() + ")",
        "Files attached to this message",
        true,
        AttachmentsInspectorFactory.INSPECTOR_ID);
    this.container = container;

    container.addAttachmentsChangeListener(this);
  }
Пример #2
0
 public void propertyChange(PropertyChangeEvent evt) {
   setTitle("Attachments (" + container.getAttachmentCount() + ")");
 }