/** * Write open group comment * * <pre><code> * /** * * @addtogroup <i><b>groupName groupTitle</i></b> * * @brief <i><b>groupBrief</i></b> * * @{ * */</code></pre> * * @param template Template used to describe the group * @throws IOException */ public void writeStartGroup(Peripheral peripheral) throws IOException { writeStartGroup( peripheral.getGroupName(), peripheral.getGroupTitle(), peripheral.getGroupBriefDescription()); }