Beispiel #1
0
  /** {@inheritDoc} */
  @Override
  public void addContents(DexFile file) {
    super.addContents(file);

    StringIdsSection stringIds = file.getStringIds();
    stringIds.intern(getRef().getNat().getName());
  }
 /**
  * Interns the components of a name-and-type into this instance.
  *
  * @param nat {@code non-null;} the name-and-type
  */
 public void intern(CstNat nat) {
   intern(nat.getName());
   intern(nat.getDescriptor());
 }