Fix missing javadoc parameters, throw tags,...

This commit is contained in:
Jindra Petřík
2024-08-08 22:00:27 +02:00
parent cf06781fdf
commit acc5f94889
179 changed files with 1021 additions and 1477 deletions

View File

@@ -49,8 +49,8 @@ public class CharSequenceJavaFileObject extends SimpleJavaFileObject {
* Answers the CharSequence to be compiled. It will give the source code
* stored in variable "content"
*
* @param ignoreEncodingErrors
* @return
* @param ignoreEncodingErrors Ignore encoding errors
* @return CharSequence
*/
@Override
public CharSequence getCharContent(boolean ignoreEncodingErrors) {

View File

@@ -63,8 +63,8 @@ public class JavaClassObject extends SimpleJavaFileObject {
* array. This way the compiler will write everything into the byte array
* that we will instantiate later
*
* @return
* @throws java.io.IOException
* @return Output stream
* @throws IOException On I/O error
*/
@Override
public OutputStream openOutputStream() throws IOException {