/commandslib/src/com/google/android/marvin/commands/CommandExecutor.java
Java | 14 lines | 5 code | 4 blank | 5 comment | 0 complexity | 4d0565f8f17e76e83b33d9c7d49d213c MD5 | raw file
1// Copyright 2010 Google Inc. All Rights Reserved. 2 3package com.google.android.marvin.commands; 4 5import android.content.Context; 6 7/** 8 * @author clsimon@google.com (Cheryl Simon) 9 * 10 */ 11public interface CommandExecutor { 12 13 String executeCommand(Context context); 14}