SYMBOL INDEX (61 symbols across 3 files) FILE: library/src/main/java/de/cketti/mailto/EmailIntentBuilder.java class EmailIntentBuilder (line 56) | @SuppressWarnings("WeakerAccess") method EmailIntentBuilder (line 66) | private EmailIntentBuilder(@NotNull Context context) { method from (line 78) | @NotNull method to (line 91) | @NotNull method to (line 106) | @NotNull method cc (line 125) | @NotNull method cc (line 140) | @NotNull method bcc (line 159) | @NotNull method bcc (line 174) | @NotNull method subject (line 193) | @NotNull method body (line 209) | @NotNull method start (line 221) | public boolean start() { method startActivity (line 232) | private void startActivity(Intent intent) { method build (line 245) | @NotNull method constructMailtoUri (line 251) | @NotNull method addQueryParameter (line 266) | private boolean addQueryParameter(StringBuilder mailto, String field, ... method addRecipientQueryParameters (line 276) | private boolean addRecipientQueryParameters(StringBuilder mailto, Stri... method addRecipients (line 288) | private void addRecipients(StringBuilder mailto, Set recipient... method checkEmail (line 301) | private void checkEmail(String email) { method checkNoLineBreaks (line 310) | private void checkNoLineBreaks(String text) { method checkNotNull (line 319) | @NotNull method encodeRecipient (line 328) | @NotNull method fixLineBreaks (line 336) | @NotNull FILE: library/src/test/java/de/cketti/mailto/EmailIntentBuilderTest.java class EmailIntentBuilderTest (line 28) | @RunWith(RobolectricTestRunner.class) method setUp (line 36) | @Before method from_withNullArgument_shouldThrow (line 41) | @SuppressWarnings("ConstantConditions") method build_shouldReturnIntentWithSendToAction (line 47) | @Test method build_withSingleToValue_shouldReturnExpectedResult (line 54) | @Test method build_withListToValue_shouldReturnExpectedResult (line 63) | @Test method build_withSingleCcValue_shouldReturnExpectedResult (line 72) | @Test method build_withListCcValue_shouldReturnExpectedResult (line 81) | @Test method build_withSingleBccValue_shouldReturnExpectedResult (line 90) | @Test method build_withListBccValue_shouldReturnExpectedResult (line 99) | @Test method build_withSubject_shouldReturnExpectedResult (line 108) | @Test method build_withBodyContainingImproperLineBreak_shouldReturnFixedResult (line 117) | @Test method build_withAllExtras_shouldReturnExpectedResult (line 126) | @Test method start_fromActivity_shouldCreateIntentWithoutNewTaskFlag (line 145) | @Test method start_fromContext_shouldCreateIntentWithNewTaskFlag (line 157) | @Test method start_withoutError_shouldReturnTrue (line 167) | @Test method start_withActivityNotFoundException_shouldReturnFalse (line 174) | @Test method encodeRecipient_withComplicatedEmailOne_shouldReturnExpectedResult (line 183) | @Test method encodeRecipient_withComplicatedEmailTwo_shouldReturnExpectedResult (line 190) | @Test method encodeRecipient_withComplicatedEmailThree_shouldReturnExpectedResult (line 197) | @Test method to_withNullArgument_shouldThrow (line 204) | @SuppressWarnings("ConstantConditions") method to_withArgumentStartingWithAt_shouldThrow (line 211) | @Test(expected = IllegalArgumentException.class) method to_withArgumentEndingInAt_shouldThrow (line 217) | @Test(expected = IllegalArgumentException.class) method to_withArgumentNotContainingAt_shouldThrow (line 223) | @Test(expected = IllegalArgumentException.class) method subject_withNullArgument_shouldThrow (line 229) | @SuppressWarnings("ConstantConditions") method subject_withArgumentContainingCarriageReturn_shouldThrow (line 236) | @Test(expected = IllegalArgumentException.class) method subject_withArgumentContainingLineFeed_shouldThrow (line 242) | @Test(expected = IllegalArgumentException.class) method subject_withArgumentContainingCrLf_shouldThrow (line 248) | @Test(expected = IllegalArgumentException.class) method fixLineBreaks_withArgumentContainingCr_shouldReturnExpectedResult (line 254) | @Test method fixLineBreaks_withArgumentContainingLf_shouldReturnExpectedResult (line 261) | @Test method fixLineBreaks_withArgumentContainingCrLf_shouldReturnExpectedResult (line 268) | @Test method getIntentFromStartActivityInvocation (line 275) | private Intent getIntentFromStartActivityInvocation(Context context) { FILE: sample/src/main/java/de/cketti/mailto/sample/MainActivity.java class MainActivity (line 16) | public class MainActivity extends AppCompatActivity { method onCreate (line 25) | @Override method onCreateOptionsMenu (line 40) | @Override method onOptionsItemSelected (line 46) | @Override method sendFeedback (line 54) | private void sendFeedback() { method sendEmail (line 66) | void sendEmail() {