-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathmodule-info.java
More file actions
95 lines (93 loc) · 4.04 KB
/
module-info.java
File metadata and controls
95 lines (93 loc) · 4.04 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* Copyright 2022 The Document Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module org.odftoolkit.odfdom {
exports org.odftoolkit.odfdom;
exports org.odftoolkit.odfdom.changes;
exports org.odftoolkit.odfdom.doc.presentation;
exports org.odftoolkit.odfdom.doc.table;
exports org.odftoolkit.odfdom.doc;
exports org.odftoolkit.odfdom.dom.attribute.anim;
exports org.odftoolkit.odfdom.dom.attribute.chart;
exports org.odftoolkit.odfdom.dom.attribute.config;
exports org.odftoolkit.odfdom.dom.attribute.db;
exports org.odftoolkit.odfdom.dom.attribute.dr3d;
exports org.odftoolkit.odfdom.dom.attribute.draw;
exports org.odftoolkit.odfdom.dom.attribute.fo;
exports org.odftoolkit.odfdom.dom.attribute.form;
exports org.odftoolkit.odfdom.dom.attribute.grddl;
exports org.odftoolkit.odfdom.dom.attribute.meta;
exports org.odftoolkit.odfdom.dom.attribute.number;
exports org.odftoolkit.odfdom.dom.attribute.office;
exports org.odftoolkit.odfdom.dom.attribute.presentation;
exports org.odftoolkit.odfdom.dom.attribute.script;
exports org.odftoolkit.odfdom.dom.attribute.smil;
exports org.odftoolkit.odfdom.dom.attribute.style;
exports org.odftoolkit.odfdom.dom.attribute.svg;
exports org.odftoolkit.odfdom.dom.attribute.table;
exports org.odftoolkit.odfdom.dom.attribute.text;
exports org.odftoolkit.odfdom.dom.attribute.xforms;
exports org.odftoolkit.odfdom.dom.attribute.xhtml;
exports org.odftoolkit.odfdom.dom.attribute.xlink;
exports org.odftoolkit.odfdom.dom.attribute.xml;
exports org.odftoolkit.odfdom.dom.element;
exports org.odftoolkit.odfdom.dom.element.anim;
exports org.odftoolkit.odfdom.dom.element.chart;
exports org.odftoolkit.odfdom.dom.element.config;
exports org.odftoolkit.odfdom.dom.element.db;
exports org.odftoolkit.odfdom.dom.element.dc;
exports org.odftoolkit.odfdom.dom.element.dr3d;
exports org.odftoolkit.odfdom.dom.element.draw;
exports org.odftoolkit.odfdom.dom.element.form;
exports org.odftoolkit.odfdom.dom.element.math;
exports org.odftoolkit.odfdom.dom.element.meta;
exports org.odftoolkit.odfdom.dom.element.number;
exports org.odftoolkit.odfdom.dom.element.office;
exports org.odftoolkit.odfdom.dom.element.presentation;
exports org.odftoolkit.odfdom.dom.element.script;
exports org.odftoolkit.odfdom.dom.element.style;
exports org.odftoolkit.odfdom.dom.element.svg;
exports org.odftoolkit.odfdom.dom.element.table;
exports org.odftoolkit.odfdom.dom.element.text;
exports org.odftoolkit.odfdom.dom.element.xforms;
exports org.odftoolkit.odfdom.dom;
exports org.odftoolkit.odfdom.dom.style;
exports org.odftoolkit.odfdom.dom.style.props;
exports org.odftoolkit.odfdom.incubator.doc.draw;
exports org.odftoolkit.odfdom.incubator.doc.number;
exports org.odftoolkit.odfdom.incubator.doc.office;
exports org.odftoolkit.odfdom.incubator.doc.style;
exports org.odftoolkit.odfdom.incubator.doc.text;
exports org.odftoolkit.odfdom.incubator.meta;
exports org.odftoolkit.odfdom.incubator.search;
exports org.odftoolkit.odfdom.pkg;
exports org.odftoolkit.odfdom.pkg.dsig;
exports org.odftoolkit.odfdom.pkg.manifest;
exports org.odftoolkit.odfdom.pkg.rdfa;
exports org.odftoolkit.odfdom.type;
exports org.odftoolkit.odfdom.dom.rdfa;
requires commons.validator;
requires java.desktop;
requires java.logging;
requires java.rdfa;
requires java.xml;
requires org.apache.commons.compress;
requires org.apache.commons.lang3;
requires org.apache.jena.core;
requires org.json;
requires org.slf4j;
requires serializer;
requires xercesImpl;
}