summaryrefslogtreecommitdiff
path: root/man/man1/slice2java.1
blob: 967b483a4d4f277bb78e1d19cc6271dbe41c7981 (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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
.TH slice2java 1

.SH NAME

slice2java - The Slice to Java compiler.

.SH SYNOPSIS

slice2java [options] [files]

.SH DESCRIPTION

slice2java compiles Slice files to Java. The macro __SLICE2JAVA__
is defined during this compilation.

Full documentation for slice2java is available online at:
.br
https://doc.zeroc.com/ice/3.7/language-mappings/java-mapping/client-side-slice-to-java-mapping/slice2java-command-line-options

.SH OPTIONS

.TP
.BR \-h ", " \-\-help\fR
.br
Displays a help message.

.TP
.BR \-v ", " \-\-version\fR
Displays the compiler version.

.TP
.BR \-DNAME\fR
.br
Defines the preprocessor symbol NAME.

.TP
.BR \-DNAME=DEF\fR
.br
Defines the preprocessor symbol NAME with the value DEF.

.TP
.BR \-UNAME\fR
.br
Undefines the preprocessor symbol NAME.

.TP
.BR \-IDIR\fR
.br
Add the directory DIR to the search path for #include directives.

.TP
.BR \-E\fR
.br
Print the preprocessor output on stdout.

.TP
.BR \-\-output-dir " " DIR\fR
.br
Place the generated files into directory DIR.

.TP
.BR \-d ", " \-\-debug\fR
.br
Print debug information showing the operation of the Slice parser.

.TP
.BR \-\-depend\fR
.br
Print dependency information to standard output by default, or to the
file specified by the --depend-file option. No code is generated when
this option is specified.

.TP
.BR \-\-depend\-xml\fR
.br
Print dependency information in XML format to standard output by default,
or to the file specified by the --depend-file option. No code is generated
when this option is specified.

.TP
.BR \-\-depend\-file " " FILE\fR
.br
Directs dependency information to the specified file. The output
format depends on whether --depend or --depend-xml is also specified.

.TP
.BR \-\-validate\fR
.br
Checks the provided command-line options for correctness, and does not
generate any code.

.TP
.BR \-\-compat\fR
.br
Generate code for the Java Compat mapping. When this option is specified, the
macro __SLICE2JAVA_COMPAT__ is defined during the compilation. If this
option is not specified, the default behavior is to generate code for the
Java mapping.

.TP
.BR \-\-tie\fR
.br
Generate tie classes. (Java Compat only)

.TP
.BR \-\-impl\fR
.br
Generate sample implementation files. This option will not overwrite an
existing file.

.TP
.BR \-\-impl\-tie
.br
Generate sample implementation files using tie classes. This option will not
overwrite an existing file. (Java Compat only)

.TP
.BR \-\-checksum " " CLASS\fR
.br
Generate checksums for Slice definitions into the class CLASS. The given class
name may optionally contain a package specifier. The generated class contains
checksums for all of the Slice files being translated by this invocation of
the compiler.

.TP
.BR \-\-meta " " META\fR
.br
Define the file metadata directive META. Using this option is equivalent to
defining the file metadata META in each named Slice file, as well as in any
file included by a named Slice file. File metadata specified with --meta
overrides any corresponding file metadata directive in the files being
compiled.

.TP
.BR \-\-list\-generated\fR
.br
Emit a list of generated files in XML format.

.SH SEE ALSO

.BR slice2cpp (1),
.BR slice2cs (1),
.BR slice2js (1),
.BR slice2matlab (1),
.BR slice2objc (1),
.BR slice2php (1),
.BR slice2py (1),
.BR slice2rb (1),
.BR slice2swift (1)