blob: dc94d343952bc36644c428f8692ccab5e4b7f84e [file] [log] [blame]
package org.eclipse.epf.authoring.ui.richtext;
import java.io.UnsupportedEncodingException;
import org.eclipse.epf.library.layout.DefaultContentValidator;
import org.eclipse.epf.library.layout.LinkInfo;
import org.eclipse.epf.uma.MethodConfiguration;
import org.eclipse.epf.uma.MethodElement;
/**
* Special content validator for the Rich Text Editor
* @author Jeff Hardy
*
*/
public class RichTextContentValidator extends DefaultContentValidator {
/**
* validates a URL without decoding it
*/
public LinkInfo validateLink(MethodElement owner, String attributes,
String text, MethodConfiguration config) {
LinkInfo info = new LinkInfo(owner, this, pubDir) {
protected String decode(String str) throws UnsupportedEncodingException {
return str;
}
};
info.validateLink(attributes, text, config);
return info;
}
}