1 //2 // ____.3 // __/\ ______| |__/\. _______4 // __ .____| | \ | +----+ \5 // _______| /--| | | - \ _ | : - \_________6 // \\______: :---| : : | : | \________>7 // |__\---\_____________:______: :____|____:_____\8 // /_____|9 //10 // . . . i n j a h i a w e t r u s t . . .11 //12 //13 14 package org.jahia.services.htmleditors;15 16 /**17 * <p>Title: ClientCapabilities Interface</p>18 * <p>Description: Interface for Client Capabilities</p>19 * <p>Copyright: Copyright (c) 2002</p>20 * <p>Company: Jahia S.A.R.L</p>21 * @author Khue Nguyen22 * @version 1.023 */24 25 public interface ClientCapabilities {26 27 /**28 * Returns the Client Agent as String.29 *30 * @return the Client Agent31 */32 public abstract String getClientAgent();33 34 }