1 package org.jahia.services.htmleditors; 2 3 /** 4 * <p>Title: Interface that offers a test for an HTML Editor if it is compatible 5 * with the user's current browser.</p> 6 * <p>Description: </p> 7 * <p>Copyright: Copyright (c) 2002</p> 8 * <p>Company: Jahia Ltd</p> 9 * @author Serge Huber 10 * @version 1.0 11 */ 12 13 public interface EditorCompatibilityTesteable { 14 15 public boolean isCompatible(ClientCapabilities clientCapabilities); 16 17 }