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-compress.git
The following commit(s) were added to refs/heads/master by this push: new 37bd3469 Javadoc 37bd3469 is described below commit 37bd34695dcd1377c5cccf9835dbcd8c32bab889 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Oct 29 07:49:58 2023 -0400 Javadoc --- .../harmony/pack200/AttributeDefinitionBands.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/harmony/pack200/AttributeDefinitionBands.java b/src/main/java/org/apache/commons/compress/harmony/pack200/AttributeDefinitionBands.java index c7082eb2..368f242a 100644 --- a/src/main/java/org/apache/commons/compress/harmony/pack200/AttributeDefinitionBands.java +++ b/src/main/java/org/apache/commons/compress/harmony/pack200/AttributeDefinitionBands.java @@ -46,11 +46,27 @@ public class AttributeDefinitionBands extends BandSet { } } + + /** + * {@value} + */ public static final int CONTEXT_CLASS = 0; + + /** + * {@value} + */ public static final int CONTEXT_CODE = 3; + + /** + * {@value} + */ public static final int CONTEXT_FIELD = 1; + /** + * {@value} + */ public static final int CONTEXT_METHOD = 2; + private final List<AttributeDefinition> classAttributeLayouts = new ArrayList<>(); private final List<AttributeDefinition> methodAttributeLayouts = new ArrayList<>(); private final List<AttributeDefinition> fieldAttributeLayouts = new ArrayList<>();