use of com.taobao.android.dx.cf.iface.AttributeList in project atlas by alibaba.
the class DirectClassFile method getSourceFile.
/** {@inheritDoc} */
public CstString getSourceFile() {
AttributeList attribs = getAttributes();
Attribute attSf = attribs.findFirst(AttSourceFile.ATTRIBUTE_NAME);
if (attSf instanceof AttSourceFile) {
return ((AttSourceFile) attSf).getSourceFile();
}
return null;
}
Aggregations