blob: 6fb6d915e9938001d0f716c7c3ac98100302d655 [file] [log] [blame]
package org.eclipse.wst.validation.internal;
import org.eclipse.wst.validation.internal.plugin.ValidationPlugin;
public interface DebugConstants {
/** matches - trace filter matches. */
String TraceMatches = ValidationPlugin.PLUGIN_ID+"/matches"; //$NON-NLS-1$
/** timings - trace the times of the validators. */
String TraceTimes = ValidationPlugin.PLUGIN_ID+"/timings"; //$NON-NLS-1$
/** v1 - trace the v1 validators. */
String TraceV1 = ValidationPlugin.PLUGIN_ID+"/v1"; //$NON-NLS-1$
/** timings/tracefile - file that stores the trace events */
String TraceTimesFile = ValidationPlugin.PLUGIN_ID+"/timings/tracefile"; //$NON-NLS-1$
}