From ad18b5677a01dd87d680a9256c33fec0e42b5156 Mon Sep 17 00:00:00 2001 From: Lukas Jungmann Date: Thu, 27 Apr 2023 11:31:16 +0200 Subject: [PATCH] add missing javadoc description for MimeTypeEntry getters Signed-off-by: Lukas Jungmann --- api/src/main/java/jakarta/activation/MimeTypeEntry.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/api/src/main/java/jakarta/activation/MimeTypeEntry.java b/api/src/main/java/jakarta/activation/MimeTypeEntry.java index a73c6a6..464f2e9 100644 --- a/api/src/main/java/jakarta/activation/MimeTypeEntry.java +++ b/api/src/main/java/jakarta/activation/MimeTypeEntry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2023 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Distribution License v. 1.0, which is available at @@ -29,6 +29,8 @@ public MimeTypeEntry(String mime_type, String file_ext) { } /** + * Get MIME type string + * * @return the MIME type string */ public String getMIMEType() { @@ -36,6 +38,8 @@ public String getMIMEType() { } /** + * Get the file extension + * * @return the file extension */ public String getFileExtension() {