Uses of Class
edu.mayo.bsi.ngsportal.shared.Note

Packages that use Note
edu.mayo.bsi.ngsportal.client   
edu.mayo.bsi.ngsportal.server   
edu.mayo.bsi.ngsportal.shared   
 

Uses of Note in edu.mayo.bsi.ngsportal.client
 

Methods in edu.mayo.bsi.ngsportal.client that return types with arguments of type Note
 Collection<Note> NoteWidget.getNewNotes()
          Gets notes that have been newly added.
 Collection<Note> NoteWidget.getNotes()
          Gets ALL notes.
 

Methods in edu.mayo.bsi.ngsportal.client with parameters of type Note
 void NoteWidget.addNewNote(Note note)
          Adds a new note to the widget that is not currently stored on the DB backend.
 

Method parameters in edu.mayo.bsi.ngsportal.client with type arguments of type Note
 void NoteWidget.setNotes(Collection<Note> notes)
          Sets the notes to be displayed by the widget.
 

Uses of Note in edu.mayo.bsi.ngsportal.server
 

Methods in edu.mayo.bsi.ngsportal.server that return types with arguments of type Note
 List<Note> NGSPortalServiceImpl.getNote(int connectionID, String tableName, int rowID)
          Get one or more notes from the database
 

Uses of Note in edu.mayo.bsi.ngsportal.shared
 

Methods in edu.mayo.bsi.ngsportal.shared that return types with arguments of type Note
 List<Note> NGSPortalService.getNote(int connectionID, String tableName, int rowID)
          Get one or more notes from the database
 

Method parameters in edu.mayo.bsi.ngsportal.shared with type arguments of type Note
 void NGSPortalServiceAsync.getNote(int connectionID, String tableName, int rowID, com.google.gwt.user.client.rpc.AsyncCallback<List<Note>> callback)