/* * UserList.java */ package project1; interface UserListObserver { public void onUserListSelect(int vid); public void onUserListDeselect(); }