Differential D12033 Diff 29183 src/infrastructure/diff/interface/PhabricatorInlineCommentInterface.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/diff/interface/PhabricatorInlineCommentInterface.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Shared interface used by Differential and Diffusion inline comments. | * Shared interface used by Differential and Diffusion inline comments. | ||||
| */ | */ | ||||
| interface PhabricatorInlineCommentInterface extends PhabricatorMarkupInterface { | interface PhabricatorInlineCommentInterface extends PhabricatorMarkupInterface { | ||||
| const MARKUP_FIELD_BODY = 'markup:body'; | const MARKUP_FIELD_BODY = 'markup:body'; | ||||
| const STATE_UNDONE = 'undone'; | |||||
| const STATE_DRAFT = 'draft'; | |||||
| const STATE_UNDRAFT = 'undraft'; | |||||
| const STATE_DONE = 'done'; | |||||
| public function setChangesetID($id); | public function setChangesetID($id); | ||||
| public function getChangesetID(); | public function getChangesetID(); | ||||
| public function setIsNewFile($is_new); | public function setIsNewFile($is_new); | ||||
| public function getIsNewFile(); | public function getIsNewFile(); | ||||
| public function setLineNumber($number); | public function setLineNumber($number); | ||||
| public function getLineNumber(); | public function getLineNumber(); | ||||
| public function setLineLength($length); | public function setLineLength($length); | ||||
| public function getLineLength(); | public function getLineLength(); | ||||
| public function setReplyToCommentPHID($phid); | public function setReplyToCommentPHID($phid); | ||||
| public function getReplyToCommentPHID(); | public function getReplyToCommentPHID(); | ||||
| public function setHasReplies($has_replies); | public function setHasReplies($has_replies); | ||||
| public function getHasReplies(); | public function getHasReplies(); | ||||
| public function setIsDeleted($deleted); | public function setIsDeleted($deleted); | ||||
| public function getIsDeleted(); | public function getIsDeleted(); | ||||
| public function setFixedState($state); | |||||
| public function getFixedState(); | |||||
| public function setContent($content); | public function setContent($content); | ||||
| public function getContent(); | public function getContent(); | ||||
| public function setCache($cache); | public function setCache($cache); | ||||
| public function getCache(); | public function getCache(); | ||||
| public function setAuthorPHID($phid); | public function setAuthorPHID($phid); | ||||
| public function getAuthorPHID(); | public function getAuthorPHID(); | ||||
| Show All 11 Lines | |||||