1/*
2 * Copyright (C) 2014 Google, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package dagger.internal.codegen.writer;
17
18import java.io.IOException;
19import java.util.Set;
20
21final class ArrayTypeName implements TypeName {
22  private final TypeName componentType;
23
24  ArrayTypeName(TypeName componentType) {
25    this.componentType = componentType;
26  }
27
28  @Override
29  public Set<ClassName> referencedClasses() {
30    return componentType.referencedClasses();
31  }
32
33  @Override
34  public Appendable write(Appendable appendable, Context context) throws IOException {
35    return componentType.write(appendable, context).append("[]");
36  }
37
38  @Override
39  public boolean equals(Object obj) {
40    return (obj instanceof ArrayTypeName)
41        && this.componentType.equals(((ArrayTypeName) obj).componentType);
42  }
43
44  @Override
45  public int hashCode() {
46    return componentType.hashCode();
47  }
48
49  @Override
50  public String toString() {
51    return Writables.writeToString(this);
52  }
53}
54