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

com.googlecode.dex2jar.ir.ts.an.SimpleLiveValue Maven / Gradle / Ivy

package com.googlecode.dex2jar.ir.ts.an;

import java.util.List;

public class SimpleLiveValue implements AnalyzeValue {

    public boolean used = false;

    public SimpleLiveValue parent;

    public List otherParents;

    @Override
    public char toRsp() {
        return used ? 'x' : '.';
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy