blob: e4f2ae560f92e373cc9b6cc82fd4288006d504d0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.ui.define.utilities;
/**
* @author Roberto E. Escobar
*/
public class HtmlStringUtils {
private HtmlStringUtils() {
}
public static String addSingleQuotes(String value) {
return "'" + value + "'";
}
public static String escapeString(String value) {
return value.replaceAll("'", "\\'");
}
}