Java: Substitua tudo 'em uma string por \'

Eu preciso escapar todas as citações (') em uma seqüência de caracteres, por isso se torna \'

Eu tentei usar replaceAll, mas não faz nada. Por alguma razão, não consigo fazer o regex funcionar.

Estou tentando com

String s = "You'll be totally awesome, I'm really terrible";
String shouldBecome = "You\'ll be totally awesome, I\'m really terrible";
s = s.replaceAll("'","\\'"); // Doesn't do anything
s = s.replaceAll("\'","\\'"); // Doesn't do anything
s = s.replaceAll("\\'","\\'"); // Doesn't do anything

Estou realmente preso aqui, espero que alguém possa me ajudar aqui.

Obrigado,

Iwan

questionAnswers(5)

yourAnswerToTheQuestion