taverna-scufl2-annotation/src/main/java/org/apache/taverna/scufl2/annotation/AnnotationTools.java [180:197]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		StringBuilder turtle = new StringBuilder();
		turtle.append("<");
		turtle.append(annotatedSubject.toASCIIString());
		turtle.append("> ");

		turtle.append("<");
		turtle.append(predicate.toASCIIString());
		turtle.append("> ");

		// A potentially multi-line string
		turtle.append("\"\"\"");
		// Escape existing \ to \\
		String escaped = value.replace("\\", "\\\\");
		// Escape existing " to \" (beware Java's escaping of \ and " below)
		escaped = escaped.replace("\"", "\\\"");
		turtle.append(escaped);
		turtle.append("\"\"\"");
		turtle.append(" .");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



taverna-scufl2-t2flow/src/main/java/org/apache/taverna/scufl2/translator/t2flow/T2FlowParser.java [730:747]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
					StringBuilder turtle = new StringBuilder();
					turtle.append("<");
					turtle.append(annotatedSubject.toASCIIString());
					turtle.append("> ");

					turtle.append("<");
					turtle.append(predicate.toASCIIString());
					turtle.append("> ");

					// A potentially multi-line string
					turtle.append("\"\"\"");
					// Escape existing \ to \\
					String escaped = value.replace("\\", "\\\\");
					// Escape existing " to \" (beware Java's escaping of \ and " below)
					escaped = escaped.replace("\"", "\\\"");
					turtle.append(escaped);
					turtle.append("\"\"\"");
					turtle.append(" .");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



