Created
February 5, 2015 09:52
-
-
Save RussellCollins/8ea6cb47078bcbbb99dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.factorypatterndemo.utils.interfaces; | |
import java.io.IOException; | |
import java.util.Calendar; | |
import com.android.uiautomator.core.UiObjectNotFoundException; | |
public interface SystemUiDateTimeViewHelperInterface { | |
void setSystemTime(Calendar calendar) throws UiObjectNotFoundException, IOException; | |
void resetAutomaticDateAndTime() throws UiObjectNotFoundException, IOException; | |
void setSystemDate(Calendar calendar) throws UiObjectNotFoundException, IOException; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment