Package jadx.gui.cache.code
Class FixedCodeCache
- java.lang.Object
-
- jadx.api.impl.DelegateCodeCache
-
- jadx.gui.cache.code.FixedCodeCache
-
- All Implemented Interfaces:
jadx.api.ICodeCache,java.io.Closeable,java.lang.AutoCloseable
public class FixedCodeCache extends jadx.api.impl.DelegateCodeCacheCode cache with fixed size of wrapped code cache ('remove' and 'add' methods will do nothing).
-
-
Constructor Summary
Constructors Constructor Description FixedCodeCache(jadx.api.ICodeCache codeCache)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(java.lang.String clsFullName, jadx.api.ICodeInfo codeInfo)voidremove(java.lang.String clsFullName)
-
-
-
Method Detail
-
remove
public void remove(java.lang.String clsFullName)
- Specified by:
removein interfacejadx.api.ICodeCache- Overrides:
removein classjadx.api.impl.DelegateCodeCache
-
add
public void add(java.lang.String clsFullName, jadx.api.ICodeInfo codeInfo)- Specified by:
addin interfacejadx.api.ICodeCache- Overrides:
addin classjadx.api.impl.DelegateCodeCache
-
-