[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Shared interface used by Differential and Diffusion inline comments. 5 */ 6 interface PhabricatorInlineCommentInterface extends PhabricatorMarkupInterface { 7 8 const MARKUP_FIELD_BODY = 'markup:body'; 9 10 public function setChangesetID($id); 11 public function getChangesetID(); 12 13 public function setIsNewFile($is_new); 14 public function getIsNewFile(); 15 16 public function setLineNumber($number); 17 public function getLineNumber(); 18 19 public function setLineLength($length); 20 public function getLineLength(); 21 22 public function setContent($content); 23 public function getContent(); 24 25 public function setCache($cache); 26 public function getCache(); 27 28 public function setAuthorPHID($phid); 29 public function getAuthorPHID(); 30 31 public function setSyntheticAuthor($synthetic_author); 32 public function getSyntheticAuthor(); 33 34 public function isCompatible(PhabricatorInlineCommentInterface $inline); 35 public function isDraft(); 36 37 public function save(); 38 public function delete(); 39 40 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |