1: <?php
2: /**
3: * PHP version 5
4: * @package generalDriver
5: * @author Christian Schiffler <c.schiffler@cyberspectrum.de>
6: * @author Stefan Heimes <stefan_heimes@hotmail.com>
7: * @author Tristan Lins <tristan.lins@bit3.de>
8: * @copyright The MetaModels team.
9: * @license LGPL.
10: * @filesource
11: */
12:
13: namespace DcGeneral\DataDefinition\Definition;
14:
15: use DcGeneral\DataDefinition\Palette\PaletteCollectionInterface;
16:
17: /**
18: * This interface describes a palette definition.
19: *
20: * All methods are being derived from the parenting interfaces currently.
21: *
22: * @package DcGeneral\DataDefinition\Definition
23: */
24: interface PalettesDefinitionInterface extends DefinitionInterface, PaletteCollectionInterface
25: {
26: /**
27: * The name of the definition.
28: */
29: const NAME = 'palettes';
30: }
31: