/*
 * @(#)FormFieldValueEncoder.java
 *
 * Copyright 1999-2002 by Oracle Corporation,
 * 500 Oracle Parkway, Redwood Shores, California, 94065, U.S.A.
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Oracle Corporation.
 */

package oracle.jdeveloper.html;


/**
 *
 * Provides functions for encoding the value portion of form fields
 *
 * @author  Juan Oropeza
 * @version PUBLIC
 */
public class FormFieldValueEncoder
{
    /**
	*	Encode field value for embedding in an HTML document.
	*/
	static public String encode(String sValue)
	{
      return HTMLElement.quote(sValue);
	}
}