1 32 33 package it.businesslogic.ireport.gui.event; 34 35 import java.util.Vector ; 36 40 public class FontsListChangedEvent { 41 42 private Vector updatedList = new Vector (); 43 44 public FontsListChangedEvent(Vector updatedList) { 45 46 this.setUpdatedList(updatedList); 47 } 48 49 public Vector getUpdatedList() { 50 return updatedList; 51 } 52 53 public void setUpdatedList(Vector updatedList) { 54 this.updatedList = updatedList; 55 } 56 57 58 } 59 | Popular Tags |