getEventDispatcher()->addListener( * '\OCA\Files_FullTextSearch::onFileIndexing', * function(GenericEvent $e) { * //@var \OCP\Files\Node $file * $file = $e->getArgument('file'); * * // @var \OCP\Files_FullTextSearch\Model\AFilesDocument $document * $document = $e->getArgument('document'); * } * ); * * @since 15.0.0 * */ abstract class AFilesDocument extends IndexDocument { /** * Returns the owner of the document/file. * * @since 15.0.0 * * @return string */ abstract public function getOwnerId(): string; /** * Returns the current viewer of the document/file. * * @since 15.0.0 * * @return string */ abstract public function getViewerId(): string; /** * Returns the type of the document/file. * * @since 15.0.0 * * @return string \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER */ abstract public function getType(): string; /** * Returns the mimetype of the document/file. * * @since 15.0.0 * * @return string */ abstract public function getMimetype(): string; /** * Returns the path of the document/file. * * @since 15.0.0 * * @return string */ abstract public function getPath(): string; } on value='Temp_ComplexScripts'>Temp_ComplexScripts Apache XML Graphics FOP: https://github.com/apache/xmlgraphics-fopwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/flow/InitialPropertySet.java
blob: 1bc599bb0e7755a34ab3d4559a91936bb1b2cde3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55