1 package org.columba.mail.gui.composer; 17 18 import java.awt.event.ActionEvent ; 19 import java.awt.event.ActionListener ; 20 21 24 public class AttachmentActionListener implements ActionListener { 25 26 private AttachmentController controller; 27 28 public AttachmentActionListener(AttachmentController c) { 29 this.controller = c; 30 } 31 32 public void actionPerformed(ActionEvent ev) { 33 String action = ev.getActionCommand(); 34 35 if (action.equals("ADD")) { 36 controller.addFileAttachment(); 37 } else if (action.equals("REMOVE")) { 38 controller.removeSelected(); 39 } 40 } 41 } 42 | Popular Tags |