/commandslib/src/com/google/android/marvin/commands/CommandExecutor.java

http://eyes-free.googlecode.com/ · Java · 14 lines · 5 code · 4 blank · 5 comment · 0 complexity · 4d0565f8f17e76e83b33d9c7d49d213c MD5 · raw file

  1. // Copyright 2010 Google Inc. All Rights Reserved.
  2. package com.google.android.marvin.commands;
  3. import android.content.Context;
  4. /**
  5. * @author clsimon@google.com (Cheryl Simon)
  6. *
  7. */
  8. public interface CommandExecutor {
  9. String executeCommand(Context context);
  10. }