mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
171 B
Java
Generated
9 lines
171 B
Java
Generated
package javax.jms;
|
|
|
|
public interface BytesMessage extends Message {
|
|
int readBytes(byte[] value);
|
|
|
|
int readBytes(byte[] value, int length);
|
|
|
|
String readUTF();
|
|
} |