| // Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| package com.android.tools.r8.references; |
| import com.android.tools.r8.Keep; |
| import com.android.tools.r8.utils.DescriptorUtils; |
| /** Reference to a class type or interface type. */ |
| public final class ClassReference implements TypeReference { |
| private final String descriptor; |
| private ClassReference(String descriptor) { |
| this.descriptor = descriptor; |
| static ClassReference fromDescriptor(String descriptor) { |
| return new ClassReference(descriptor); |
| public String getBinaryName() { |
| return DescriptorUtils.getBinaryNameFromDescriptor(descriptor); |
| public boolean isClass() { |
| public ClassReference asClass() { |
| public String getDescriptor() { |
| public boolean equals(Object o) { |
| if (!(o instanceof ClassReference)) { |
| return descriptor.equals(((ClassReference) o).descriptor); |
| return descriptor.hashCode(); |
| public String toString() { |