MCPcopy Create free account
hub / github.com/ReadyTalk/avian / Attributes

Class Attributes

classpath/java/util/jar/Attributes.java:13–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11package java.util.jar;
12
13public class Attributes {
14 public static class Name {
15 private final String name;
16
17 private static final int MAX_NAME_LENGTH = 70;
18
19 public Name(String s) {
20 int len = s.length();
21 if (len == 0 || len > MAX_NAME_LENGTH)
22 throw new IllegalArgumentException();
23
24 name = s;
25 }
26 }
27}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected