edu.mayo.bsi.ngsportal.client
Interface BooleanCommand

All Known Implementing Classes:
HandleMetadataResult

public interface BooleanCommand

Sibling to {StringCommand}, whose execute(boolean, com.google.gwt.user.client.Command) routine takes a boolean argument and an optional Command to use

@author Gregory Dougherty


Method Summary
 void execute(boolean result, com.google.gwt.user.client.Command followUp)
          A procedure that takes a boolean (generally a result from the Server) and an optional Command (generally something to execute based on the result)
 

Method Detail

execute

void execute(boolean result,
             com.google.gwt.user.client.Command followUp)
A procedure that takes a boolean (generally a result from the Server) and an optional Command (generally something to execute based on the result)

Parameters:
result - A boolean returned by the Server
followUp - Optional Command that might be executed depending on the results returned