View Javadoc
1 /* 2 * Created on Oct 29, 2003 3 */ 4 package portaview.model; 5 6 /*** 7 * Represents a collection of AlbumModel. Note that this is observable so 8 * changes can be observed by a third party view or controller. 9 * @author William Lee 10 */ 11 public class AlbumCollection extends ObservableCollection 12 { 13 public synchronized void removeAlbum(AlbumModel am) 14 { 15 remove(am); 16 } 17 18 public synchronized void addAlbum(AlbumModel am) 19 { 20 add(am); 21 } 22 }

This page was automatically generated by Maven