1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Database\Table;
9:
10: use Nette\Database;
11:
12:
13: /**
14: * Row interface.
15: *
16: * @author Jan Skrasek
17: */
18: interface IRow extends Database\IRow
19: {
20:
21: function setTable(Selection $name);
22:
23: function getTable();
24:
25: function getPrimary($need = TRUE);
26:
27: function getSignature($need = TRUE);
28:
29: function related($key, $throughColumn = NULL);
30:
31: function ref($key, $throughColumn = NULL);
32:
33: }
34: