TYPO3 CMS  TYPO3_6-2
StatusInterface.php
Go to the documentation of this file.
1 <?php
3 
22 interface StatusInterface {
23 
29  public function getSeverity();
30 
36  public function getTitle();
37 
44  public function setTitle($title);
45 
51  public function getMessage();
52 
59  public function setMessage($message);
60 }