本文整理汇总了Java中org.jf.dexlib2.iface.ClassDef.getAccessFlags方法的典型用法代码示例。如果您正苦于以下问题:Java ClassDef.getAccessFlags方法的具体用法?Java ClassDef.getAccessFlags怎么用?Java ClassDef.getAccessFlags使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jf.dexlib2.iface.ClassDef
的用法示例。
在下文中一共展示了ClassDef.getAccessFlags方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: of
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
public static ImmutableClassDef of(ClassDef classDef) {
if (classDef instanceof ImmutableClassDef) {
return (ImmutableClassDef)classDef;
}
return new ImmutableClassDef(
classDef.getType(),
classDef.getAccessFlags(),
classDef.getSuperclass(),
classDef.getInterfaces(),
classDef.getSourceFile(),
classDef.getAnnotations(),
classDef.getStaticFields(),
classDef.getInstanceFields(),
classDef.getDirectMethods(),
classDef.getVirtualMethods());
}
示例2: onSimpleAdd
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
@Override
protected ClassDef onSimpleAdd(ClassDef patch, PatcherAnnotation annotation) {
// Avoid creating a new object if not necessary.
if (patch.getAnnotations() == annotation.getFilteredAnnotations()) {
return patch;
}
return new BasicClassDef(
patch.getType(),
patch.getAccessFlags(),
patch.getSuperclass(),
patch.getInterfaces(),
patch.getSourceFile(),
annotation.getFilteredAnnotations(),
patch.getStaticFields(),
patch.getInstanceFields(),
patch.getDirectMethods(),
patch.getVirtualMethods());
}
示例3: getClassAccessFlags
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
public static int getClassAccessFlags(ClassDef classDef) {
int f = classDef.getAccessFlags();
for (Annotation a : classDef.getAnnotations()) {
if (Marker.TYPE_INNER_CLASS.equals(a.getType())) {
for (AnnotationElement e : a.getElements()) {
if (Marker.ELEM_ACCESS_FLAGS.equals(e.getName())) {
EncodedValue v = e.getValue();
if (v instanceof IntEncodedValue) {
f |= ((IntEncodedValue) v).getValue();
}
}
}
}
}
return f;
}
示例4: of
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
public static ImmutableClassDef of(ClassDef classDef) {
if (classDef instanceof ImmutableClassDef) {
return (ImmutableClassDef) classDef;
}
return new ImmutableClassDef(
classDef.getType(),
classDef.getAccessFlags(),
classDef.getSuperclass(),
classDef.getInterfaces(),
classDef.getSourceFile(),
classDef.getAnnotations(),
classDef.getStaticFields(),
classDef.getInstanceFields(),
classDef.getDirectMethods(),
classDef.getVirtualMethods());
}
示例5: onSimpleEdit
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
@Override
protected ClassDef onSimpleEdit(ClassDef patch, PatcherAnnotation annotation, ClassDef target, boolean inPlace) {
ClassDef source;
Set<? extends Annotation> annotations;
if (annotation.getContentOnly()) {
source = target;
annotations = target.getAnnotations();
if (!inPlace) patch = renameClass(patch, target.getType());
} else {
// Log class access flags before processing members.
super.onSimpleEdit(patch, annotation, target, inPlace);
source = patch;
annotations = annotation.getFilteredAnnotations();
if (!inPlace) target = renameClass(target, patch.getType());
}
return new BasicClassDef(
source.getType(),
source.getAccessFlags(),
source.getSuperclass(),
source.getInterfaces(),
source.getSourceFile(),
annotations,
Collections.unmodifiableCollection(new FieldSetPatcher(this, annotation)
.process(target.getFields(), patch.getFields())),
Collections.unmodifiableCollection(new MethodSetPatcher(this, annotation)
.process(target.getMethods(), patch.getMethods())));
}
示例6: onSimpleReplace
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
@Override
protected ClassDef onSimpleReplace(ClassDef patch, PatcherAnnotation annotation, ClassDef target, boolean inPlace) {
ClassDef source;
Set<? extends Annotation> annotations;
if (annotation.getContentOnly()) {
source = target;
annotations = target.getAnnotations();
if (!inPlace) patch = renameClass(patch, target.getType());
} else {
source = patch;
annotations = annotation.getFilteredAnnotations();
//if (!inPlace) target = renameClass(target, patch.getType());
}
return new BasicClassDef(
source.getType(),
source.getAccessFlags(),
source.getSuperclass(),
source.getInterfaces(),
source.getSourceFile(),
annotations,
patch.getStaticFields(),
patch.getInstanceFields(),
patch.getDirectMethods(),
patch.getVirtualMethods());
}
示例7: customizeClass
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
private ClassDef customizeClass(ClassDef classDef) {
List<Method> methods = new ArrayList<>();
boolean modifiedMethod = false;
for (Method method : classDef.getMethods()) {
MethodImplementation implementation = method.getImplementation();
if (implementation == null) {
methods.add(method);
continue;
}
MethodImplementation customImpl = searchAndReplaceInvocations(implementation);
if (customImpl==implementation) {
methods.add(method);
continue;
}
modifiedMethod = true;
final ImmutableMethod newMethod = new ImmutableMethod(method.getDefiningClass(),
method.getName(),
method.getParameters(),
method.getReturnType(),
method.getAccessFlags(),
method.getAnnotations(),
customImpl);
methods.add(newMethod);
}
if (!modifiedMethod)
return classDef;
return new ImmutableClassDef(classDef.getType(),
classDef.getAccessFlags(),
classDef.getSuperclass(),
classDef.getInterfaces(),
classDef.getSourceFile(),
classDef.getAnnotations(),
classDef.getFields(),
methods);
}
示例8: reClassDef
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
@Override
public ClassDef reClassDef(ClassDef classDef) {
Iterable<? extends Method> methods = classDef.getMethods();
LinkedHashSet<Method> newMethods = new LinkedHashSet<Method>();
Iterable<? extends Field> fields = classDef.getFields();
LinkedHashSet<Field>newFields = new LinkedHashSet<Field>();
Set<? extends Annotation> annotations = classDef.getAnnotations();
Set<String>interfaces = classDef.getInterfaces();
Set<String>newInterfaces = new HashSet<String>();
Set<Annotation>immutableAnnotations = new HashSet<Annotation>();
String type = classDef.getType();
reType = reType(type);
String superClass = classDef.getSuperclass();
for (String inter:interfaces){
newInterfaces.add(reInterface(inter));
}
String reSuperClass = reSuperClass(superClass);
for (Annotation annotation:annotations){
immutableAnnotations.add(reAnnotation(annotation));
}
for (Field field:fields){
newFields.add(reField(field));
}
for (Method method:methods){
if (method.getName().equals("<cinit>")||method.getName().equals("<init>")){
newMethods.add(reMethod(method));
continue;
}
// if (method.getName().equals("getArchiveFile")) {
newMethods.add(reMethod(method));
// }
}
return new ImmutableClassDef(
reType,
classDef.getAccessFlags(),
reSuperClass,
newInterfaces,
classDef.getSourceFile(),
immutableAnnotations,
newFields,
newMethods);
}
示例9: isInterface
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
/**
* Returns true if this class is an interface.
*
* If this class is not defined, then this will throw an UnresolvedClassException
*
* @return True if this class is an interface
*/
public boolean isInterface() {
ClassDef classDef = getClassDef();
return (classDef.getAccessFlags() & AccessFlags.INTERFACE.getValue()) != 0;
}
示例10: isInterface
import org.jf.dexlib2.iface.ClassDef; //导入方法依赖的package包/类
/**
* Returns true if this class is an interface.
* <p/>
* If this class is not defined, then this will throw an UnresolvedClassException
*
* @return True if this class is an interface
*/
public boolean isInterface() {
ClassDef classDef = getClassDef();
return (classDef.getAccessFlags() & AccessFlags.INTERFACE.getValue()) != 0;
}