mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
Java: add generated stubs back, but in a different directory from existing apache-http-5 stubs
This commit is contained in:
27
java/ql/test/stubs/apache-http-5-Generated/javax/servlet/ServletResponse.java
generated
Normal file
27
java/ql/test/stubs/apache-http-5-Generated/javax/servlet/ServletResponse.java
generated
Normal file
@@ -0,0 +1,27 @@
|
||||
// Generated automatically from javax.servlet.ServletResponse for testing purposes
|
||||
|
||||
package javax.servlet;
|
||||
|
||||
import java.io.PrintWriter;
|
||||
import java.util.Locale;
|
||||
import javax.servlet.ServletOutputStream;
|
||||
|
||||
public interface ServletResponse
|
||||
{
|
||||
Locale getLocale();
|
||||
PrintWriter getWriter();
|
||||
ServletOutputStream getOutputStream();
|
||||
String getCharacterEncoding();
|
||||
String getContentType();
|
||||
boolean isCommitted();
|
||||
int getBufferSize();
|
||||
void flushBuffer();
|
||||
void reset();
|
||||
void resetBuffer();
|
||||
void setBufferSize(int p0);
|
||||
void setCharacterEncoding(String p0);
|
||||
void setContentLength(int p0);
|
||||
void setContentLengthLong(long p0);
|
||||
void setContentType(String p0);
|
||||
void setLocale(Locale p0);
|
||||
}
|
||||
Reference in New Issue
Block a user