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 package org.jahia.services.fields; 14 15 16 /** 17 * This interface is only used as a signature for fields of "simple" type. 18 * Small text, Integer, Boolean, Float fields are some of fields that 19 * implements this interface. 20 * This feature is used to display several fields in a same add/update container 21 * engine popup that let the user enter several field values in a same time. 22 * 23 * @author Khue Nguyen 24 * @version 1.0 25 */ 26 27 public interface ContentSimpleField { 28 29 } 30 31