* compatible text.
*/
public RemotePart createRemotePartFromDisplayableText(String displayableText) {
mireka.address.parser.ast.RemotePartAST remotePartAST;
try {
remotePartAST = new RemotePartParser(displayableText).parse();
} catch (ParseException e) {
throw new IllegalArgumentException(e);
}
return createRemotePartFromAST(remotePartAST);
}