This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
commit 61183b98f50cfc343450d3e1ff09d4a61f30e629 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 23:32:05 2026 -0500 Javadoc --- .../java/org/apache/bcel/generic/NamedAndTyped.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/main/java/org/apache/bcel/generic/NamedAndTyped.java b/src/main/java/org/apache/bcel/generic/NamedAndTyped.java index 95c0e97e..166568fe 100644 --- a/src/main/java/org/apache/bcel/generic/NamedAndTyped.java +++ b/src/main/java/org/apache/bcel/generic/NamedAndTyped.java @@ -23,11 +23,31 @@ package org.apache.bcel.generic; */ public interface NamedAndTyped { + /** + * Gets the name. + * + * @return the name. + */ String getName(); + /** + * Gets the type. + * + * @return the type. + */ Type getType(); + /** + * Sets the name. + * + * @param name the name. + */ void setName(String name); + /** + * Sets the type. + * + * @param type the type. + */ void setType(Type type); }
