All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dongliu.apk.parser.struct.StringPool Maven / Gradle / Ivy

There is a newer version: 2.6.10
Show newest version
package net.dongliu.apk.parser.struct;

/**
 * String pool.
 *
 * @author dongliu
 */
public class StringPool {
    private String[] pool;

    public StringPool(int poolSize) {
        pool = new String[poolSize];
    }

    public String get(int idx) {
        return pool[idx];
    }

    public void set(int idx, String value) {
        pool[idx] = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy