mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
16 lines
355 B
Java
Generated
16 lines
355 B
Java
Generated
// Generated automatically from io.netty.util.ReferenceCounted for testing purposes
|
|
|
|
package io.netty.util;
|
|
|
|
|
|
public interface ReferenceCounted
|
|
{
|
|
ReferenceCounted retain();
|
|
ReferenceCounted retain(int p0);
|
|
ReferenceCounted touch();
|
|
ReferenceCounted touch(Object p0);
|
|
boolean release();
|
|
boolean release(int p0);
|
|
int refCnt();
|
|
}
|