001 /* 002 @license.text@ 003 */ 004 package biz.hammurapi.sql; 005 006 import java.util.List; 007 008 /** 009 * @author Pavel Vlasov 010 * @revision $Revision$ 011 */ 012 public interface RelationshipList extends List { 013 /** 014 * Creates new relationship item, adds it to relationship 015 * and returns newly created item. 016 * @return 017 */ 018 IDatabaseObject add(); 019 }