package net.java.sip.communicator.impl.gui.main.contactlist; import net.java.sip.communicator.service.gui.*; public abstract class UIGroupImpl extends UIGroup { /** * Returns the GroupNode corresponding to this UIGroup. * The is the actual node used in the contact list component data model. * * @return the GroupNode corresponding to this UIGroup */ public abstract GroupNode getGroupNode(); /** * Sets the GroupNode corresponding to this UIGroup. * * @param groupNode the GroupNode to set. The is the actual * node used in the contact list component data model. */ public abstract void setGroupNode(GroupNode groupNode); }