mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
Add stubs
This commit is contained in:
59
java/ql/test/stubs/apache-hive/com/google/protobuf/AbstractMessage.java
generated
Normal file
59
java/ql/test/stubs/apache-hive/com/google/protobuf/AbstractMessage.java
generated
Normal file
@@ -0,0 +1,59 @@
|
||||
// Generated automatically from com.google.protobuf.AbstractMessage for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.AbstractMessageLite;
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.CodedOutputStream;
|
||||
import com.google.protobuf.Descriptors;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.Internal;
|
||||
import com.google.protobuf.Message;
|
||||
import com.google.protobuf.UninitializedMessageException;
|
||||
import com.google.protobuf.UnknownFieldSet;
|
||||
import java.io.InputStream;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
abstract public class AbstractMessage extends AbstractMessageLite implements Message
|
||||
{
|
||||
abstract static public class Builder<BuilderType extends AbstractMessage.Builder> extends AbstractMessageLite.Builder<BuilderType> implements Message.Builder
|
||||
{
|
||||
protected static UninitializedMessageException newUninitializedMessageException(Message p0){ return null; }
|
||||
public Builder(){}
|
||||
public BuilderType clear(){ return null; }
|
||||
public BuilderType mergeFrom(ByteString p0){ return null; }
|
||||
public BuilderType mergeFrom(ByteString p0, ExtensionRegistryLite p1){ return null; }
|
||||
public BuilderType mergeFrom(CodedInputStream p0){ return null; }
|
||||
public BuilderType mergeFrom(CodedInputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public BuilderType mergeFrom(InputStream p0){ return null; }
|
||||
public BuilderType mergeFrom(InputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public BuilderType mergeFrom(Message p0){ return null; }
|
||||
public BuilderType mergeFrom(byte[] p0){ return null; }
|
||||
public BuilderType mergeFrom(byte[] p0, ExtensionRegistryLite p1){ return null; }
|
||||
public BuilderType mergeFrom(byte[] p0, int p1, int p2){ return null; }
|
||||
public BuilderType mergeFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3){ return null; }
|
||||
public BuilderType mergeUnknownFields(UnknownFieldSet p0){ return null; }
|
||||
public List<String> findInitializationErrors(){ return null; }
|
||||
public Message.Builder getFieldBuilder(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public String getInitializationErrorString(){ return null; }
|
||||
public abstract BuilderType clone();
|
||||
public boolean mergeDelimitedFrom(InputStream p0){ return false; }
|
||||
public boolean mergeDelimitedFrom(InputStream p0, ExtensionRegistryLite p1){ return false; }
|
||||
}
|
||||
protected int hashFields(int p0, Map<Descriptors.FieldDescriptor, Object> p1){ return 0; }
|
||||
protected static int hashBoolean(boolean p0){ return 0; }
|
||||
protected static int hashEnum(Internal.EnumLite p0){ return 0; }
|
||||
protected static int hashEnumList(List<? extends Internal.EnumLite> p0){ return 0; }
|
||||
protected static int hashLong(long p0){ return 0; }
|
||||
public AbstractMessage(){}
|
||||
public List<String> findInitializationErrors(){ return null; }
|
||||
public String getInitializationErrorString(){ return null; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public boolean isInitialized(){ return false; }
|
||||
public final String toString(){ return null; }
|
||||
public int getSerializedSize(){ return 0; }
|
||||
public int hashCode(){ return 0; }
|
||||
public void writeTo(CodedOutputStream p0){}
|
||||
}
|
||||
40
java/ql/test/stubs/apache-hive/com/google/protobuf/AbstractMessageLite.java
generated
Normal file
40
java/ql/test/stubs/apache-hive/com/google/protobuf/AbstractMessageLite.java
generated
Normal file
@@ -0,0 +1,40 @@
|
||||
// Generated automatically from com.google.protobuf.AbstractMessageLite for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import com.google.protobuf.UninitializedMessageException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.util.Collection;
|
||||
|
||||
abstract public class AbstractMessageLite implements MessageLite
|
||||
{
|
||||
abstract static public class Builder<BuilderType extends AbstractMessageLite.Builder> implements MessageLite.Builder
|
||||
{
|
||||
protected static <T> void addAll(java.lang.Iterable<T> p0, Collection<? super T> p1){}
|
||||
protected static UninitializedMessageException newUninitializedMessageException(MessageLite p0){ return null; }
|
||||
public Builder(){}
|
||||
public BuilderType mergeFrom(ByteString p0){ return null; }
|
||||
public BuilderType mergeFrom(ByteString p0, ExtensionRegistryLite p1){ return null; }
|
||||
public BuilderType mergeFrom(CodedInputStream p0){ return null; }
|
||||
public BuilderType mergeFrom(InputStream p0){ return null; }
|
||||
public BuilderType mergeFrom(InputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public BuilderType mergeFrom(byte[] p0){ return null; }
|
||||
public BuilderType mergeFrom(byte[] p0, ExtensionRegistryLite p1){ return null; }
|
||||
public BuilderType mergeFrom(byte[] p0, int p1, int p2){ return null; }
|
||||
public BuilderType mergeFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3){ return null; }
|
||||
public abstract BuilderType clone();
|
||||
public abstract BuilderType mergeFrom(CodedInputStream p0, ExtensionRegistryLite p1);
|
||||
public boolean mergeDelimitedFrom(InputStream p0){ return false; }
|
||||
public boolean mergeDelimitedFrom(InputStream p0, ExtensionRegistryLite p1){ return false; }
|
||||
}
|
||||
public AbstractMessageLite(){}
|
||||
public ByteString toByteString(){ return null; }
|
||||
public byte[] toByteArray(){ return null; }
|
||||
public void writeDelimitedTo(OutputStream p0){}
|
||||
public void writeTo(OutputStream p0){}
|
||||
}
|
||||
38
java/ql/test/stubs/apache-hive/com/google/protobuf/AbstractParser.java
generated
Normal file
38
java/ql/test/stubs/apache-hive/com/google/protobuf/AbstractParser.java
generated
Normal file
@@ -0,0 +1,38 @@
|
||||
// Generated automatically from com.google.protobuf.AbstractParser for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import com.google.protobuf.Parser;
|
||||
import java.io.InputStream;
|
||||
|
||||
abstract public class AbstractParser<MessageType extends MessageLite> implements Parser<MessageType>
|
||||
{
|
||||
public AbstractParser(){}
|
||||
public MessageType parseDelimitedFrom(InputStream p0){ return null; }
|
||||
public MessageType parseDelimitedFrom(InputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parseFrom(ByteString p0){ return null; }
|
||||
public MessageType parseFrom(ByteString p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parseFrom(CodedInputStream p0){ return null; }
|
||||
public MessageType parseFrom(CodedInputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parseFrom(InputStream p0){ return null; }
|
||||
public MessageType parseFrom(InputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parseFrom(byte[] p0){ return null; }
|
||||
public MessageType parseFrom(byte[] p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parseFrom(byte[] p0, int p1, int p2){ return null; }
|
||||
public MessageType parseFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3){ return null; }
|
||||
public MessageType parsePartialDelimitedFrom(InputStream p0){ return null; }
|
||||
public MessageType parsePartialDelimitedFrom(InputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parsePartialFrom(ByteString p0){ return null; }
|
||||
public MessageType parsePartialFrom(ByteString p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parsePartialFrom(CodedInputStream p0){ return null; }
|
||||
public MessageType parsePartialFrom(InputStream p0){ return null; }
|
||||
public MessageType parsePartialFrom(InputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parsePartialFrom(byte[] p0){ return null; }
|
||||
public MessageType parsePartialFrom(byte[] p0, ExtensionRegistryLite p1){ return null; }
|
||||
public MessageType parsePartialFrom(byte[] p0, int p1, int p2){ return null; }
|
||||
public MessageType parsePartialFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3){ return null; }
|
||||
}
|
||||
72
java/ql/test/stubs/apache-hive/com/google/protobuf/ByteString.java
generated
Normal file
72
java/ql/test/stubs/apache-hive/com/google/protobuf/ByteString.java
generated
Normal file
@@ -0,0 +1,72 @@
|
||||
// Generated automatically from com.google.protobuf.ByteString for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.CodedOutputStream;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
abstract public class ByteString implements Iterable<Byte>
|
||||
{
|
||||
protected abstract boolean isBalanced();
|
||||
protected abstract int getTreeDepth();
|
||||
protected abstract int partialHash(int p0, int p1, int p2);
|
||||
protected abstract int partialIsValidUtf8(int p0, int p1, int p2);
|
||||
protected abstract int peekCachedHashCode();
|
||||
protected abstract void copyToInternal(byte[] p0, int p1, int p2, int p3);
|
||||
public ByteString concat(ByteString p0){ return null; }
|
||||
public ByteString substring(int p0){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public String toStringUtf8(){ return null; }
|
||||
public abstract ByteBuffer asReadOnlyByteBuffer();
|
||||
public abstract ByteString substring(int p0, int p1);
|
||||
public abstract ByteString.ByteIterator iterator();
|
||||
public abstract CodedInputStream newCodedInput();
|
||||
public abstract InputStream newInput();
|
||||
public abstract List<ByteBuffer> asReadOnlyByteBufferList();
|
||||
public abstract String toString(String p0);
|
||||
public abstract boolean equals(Object p0);
|
||||
public abstract boolean isValidUtf8();
|
||||
public abstract byte byteAt(int p0);
|
||||
public abstract int hashCode();
|
||||
public abstract int size();
|
||||
public abstract void copyTo(ByteBuffer p0);
|
||||
public abstract void writeTo(OutputStream p0);
|
||||
public boolean isEmpty(){ return false; }
|
||||
public boolean startsWith(ByteString p0){ return false; }
|
||||
public byte[] toByteArray(){ return null; }
|
||||
public static ByteString EMPTY = null;
|
||||
public static ByteString copyFrom(ByteBuffer p0){ return null; }
|
||||
public static ByteString copyFrom(ByteBuffer p0, int p1){ return null; }
|
||||
public static ByteString copyFrom(Iterable<ByteString> p0){ return null; }
|
||||
public static ByteString copyFrom(String p0, String p1){ return null; }
|
||||
public static ByteString copyFrom(byte[] p0){ return null; }
|
||||
public static ByteString copyFrom(byte[] p0, int p1, int p2){ return null; }
|
||||
public static ByteString copyFromUtf8(String p0){ return null; }
|
||||
public static ByteString readFrom(InputStream p0){ return null; }
|
||||
public static ByteString readFrom(InputStream p0, int p1){ return null; }
|
||||
public static ByteString readFrom(InputStream p0, int p1, int p2){ return null; }
|
||||
public static ByteString.Output newOutput(){ return null; }
|
||||
public static ByteString.Output newOutput(int p0){ return null; }
|
||||
public void copyTo(byte[] p0, int p1){}
|
||||
public void copyTo(byte[] p0, int p1, int p2, int p3){}
|
||||
static public class Output extends OutputStream
|
||||
{
|
||||
protected Output() {}
|
||||
public ByteString toByteString(){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public int size(){ return 0; }
|
||||
public void reset(){}
|
||||
public void write(byte[] p0, int p1, int p2){}
|
||||
public void write(int p0){}
|
||||
public void writeTo(OutputStream p0){}
|
||||
}
|
||||
static public interface ByteIterator extends Iterator<Byte>
|
||||
{
|
||||
byte nextByte();
|
||||
}
|
||||
}
|
||||
60
java/ql/test/stubs/apache-hive/com/google/protobuf/CodedInputStream.java
generated
Normal file
60
java/ql/test/stubs/apache-hive/com/google/protobuf/CodedInputStream.java
generated
Normal file
@@ -0,0 +1,60 @@
|
||||
// Generated automatically from com.google.protobuf.CodedInputStream for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import com.google.protobuf.Parser;
|
||||
import java.io.InputStream;
|
||||
|
||||
public class CodedInputStream
|
||||
{
|
||||
protected CodedInputStream() {}
|
||||
public <T extends MessageLite> T readGroup(int p0, com.google.protobuf.Parser<T> p1, ExtensionRegistryLite p2){ return null; }
|
||||
public <T extends MessageLite> T readMessage(com.google.protobuf.Parser<T> p0, ExtensionRegistryLite p1){ return null; }
|
||||
public ByteString readBytes(){ return null; }
|
||||
public String readString(){ return null; }
|
||||
public boolean isAtEnd(){ return false; }
|
||||
public boolean readBool(){ return false; }
|
||||
public boolean skipField(int p0){ return false; }
|
||||
public byte readRawByte(){ return 0; }
|
||||
public byte[] readRawBytes(int p0){ return null; }
|
||||
public double readDouble(){ return 0; }
|
||||
public float readFloat(){ return 0; }
|
||||
public int getBytesUntilLimit(){ return 0; }
|
||||
public int getTotalBytesRead(){ return 0; }
|
||||
public int pushLimit(int p0){ return 0; }
|
||||
public int readEnum(){ return 0; }
|
||||
public int readFixed32(){ return 0; }
|
||||
public int readInt32(){ return 0; }
|
||||
public int readRawLittleEndian32(){ return 0; }
|
||||
public int readRawVarint32(){ return 0; }
|
||||
public int readSFixed32(){ return 0; }
|
||||
public int readSInt32(){ return 0; }
|
||||
public int readTag(){ return 0; }
|
||||
public int readUInt32(){ return 0; }
|
||||
public int setRecursionLimit(int p0){ return 0; }
|
||||
public int setSizeLimit(int p0){ return 0; }
|
||||
public long readFixed64(){ return 0; }
|
||||
public long readInt64(){ return 0; }
|
||||
public long readRawLittleEndian64(){ return 0; }
|
||||
public long readRawVarint64(){ return 0; }
|
||||
public long readSFixed64(){ return 0; }
|
||||
public long readSInt64(){ return 0; }
|
||||
public long readUInt64(){ return 0; }
|
||||
public static CodedInputStream newInstance(InputStream p0){ return null; }
|
||||
public static CodedInputStream newInstance(byte[] p0){ return null; }
|
||||
public static CodedInputStream newInstance(byte[] p0, int p1, int p2){ return null; }
|
||||
public static int decodeZigZag32(int p0){ return 0; }
|
||||
public static int readRawVarint32(int p0, InputStream p1){ return 0; }
|
||||
public static long decodeZigZag64(long p0){ return 0; }
|
||||
public void checkLastTagWas(int p0){}
|
||||
public void popLimit(int p0){}
|
||||
public void readGroup(int p0, MessageLite.Builder p1, ExtensionRegistryLite p2){}
|
||||
public void readMessage(MessageLite.Builder p0, ExtensionRegistryLite p1){}
|
||||
public void readUnknownGroup(int p0, MessageLite.Builder p1){}
|
||||
public void resetSizeCounter(){}
|
||||
public void skipMessage(){}
|
||||
public void skipRawBytes(int p0){}
|
||||
}
|
||||
122
java/ql/test/stubs/apache-hive/com/google/protobuf/CodedOutputStream.java
generated
Normal file
122
java/ql/test/stubs/apache-hive/com/google/protobuf/CodedOutputStream.java
generated
Normal file
@@ -0,0 +1,122 @@
|
||||
// Generated automatically from com.google.protobuf.CodedOutputStream for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.LazyField;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import java.io.OutputStream;
|
||||
|
||||
public class CodedOutputStream
|
||||
{
|
||||
protected CodedOutputStream() {}
|
||||
public int spaceLeft(){ return 0; }
|
||||
public static CodedOutputStream newInstance(OutputStream p0){ return null; }
|
||||
public static CodedOutputStream newInstance(OutputStream p0, int p1){ return null; }
|
||||
public static CodedOutputStream newInstance(byte[] p0){ return null; }
|
||||
public static CodedOutputStream newInstance(byte[] p0, int p1, int p2){ return null; }
|
||||
public static int DEFAULT_BUFFER_SIZE = 0;
|
||||
public static int LITTLE_ENDIAN_32_SIZE = 0;
|
||||
public static int LITTLE_ENDIAN_64_SIZE = 0;
|
||||
public static int computeBoolSize(int p0, boolean p1){ return 0; }
|
||||
public static int computeBoolSizeNoTag(boolean p0){ return 0; }
|
||||
public static int computeBytesSize(int p0, ByteString p1){ return 0; }
|
||||
public static int computeBytesSizeNoTag(ByteString p0){ return 0; }
|
||||
public static int computeDoubleSize(int p0, double p1){ return 0; }
|
||||
public static int computeDoubleSizeNoTag(double p0){ return 0; }
|
||||
public static int computeEnumSize(int p0, int p1){ return 0; }
|
||||
public static int computeEnumSizeNoTag(int p0){ return 0; }
|
||||
public static int computeFixed32Size(int p0, int p1){ return 0; }
|
||||
public static int computeFixed32SizeNoTag(int p0){ return 0; }
|
||||
public static int computeFixed64Size(int p0, long p1){ return 0; }
|
||||
public static int computeFixed64SizeNoTag(long p0){ return 0; }
|
||||
public static int computeFloatSize(int p0, float p1){ return 0; }
|
||||
public static int computeFloatSizeNoTag(float p0){ return 0; }
|
||||
public static int computeGroupSize(int p0, MessageLite p1){ return 0; }
|
||||
public static int computeGroupSizeNoTag(MessageLite p0){ return 0; }
|
||||
public static int computeInt32Size(int p0, int p1){ return 0; }
|
||||
public static int computeInt32SizeNoTag(int p0){ return 0; }
|
||||
public static int computeInt64Size(int p0, long p1){ return 0; }
|
||||
public static int computeInt64SizeNoTag(long p0){ return 0; }
|
||||
public static int computeLazyFieldMessageSetExtensionSize(int p0, LazyField p1){ return 0; }
|
||||
public static int computeLazyFieldSize(int p0, LazyField p1){ return 0; }
|
||||
public static int computeLazyFieldSizeNoTag(LazyField p0){ return 0; }
|
||||
public static int computeMessageSetExtensionSize(int p0, MessageLite p1){ return 0; }
|
||||
public static int computeMessageSize(int p0, MessageLite p1){ return 0; }
|
||||
public static int computeMessageSizeNoTag(MessageLite p0){ return 0; }
|
||||
public static int computeRawMessageSetExtensionSize(int p0, ByteString p1){ return 0; }
|
||||
public static int computeRawVarint32Size(int p0){ return 0; }
|
||||
public static int computeRawVarint64Size(long p0){ return 0; }
|
||||
public static int computeSFixed32Size(int p0, int p1){ return 0; }
|
||||
public static int computeSFixed32SizeNoTag(int p0){ return 0; }
|
||||
public static int computeSFixed64Size(int p0, long p1){ return 0; }
|
||||
public static int computeSFixed64SizeNoTag(long p0){ return 0; }
|
||||
public static int computeSInt32Size(int p0, int p1){ return 0; }
|
||||
public static int computeSInt32SizeNoTag(int p0){ return 0; }
|
||||
public static int computeSInt64Size(int p0, long p1){ return 0; }
|
||||
public static int computeSInt64SizeNoTag(long p0){ return 0; }
|
||||
public static int computeStringSize(int p0, String p1){ return 0; }
|
||||
public static int computeStringSizeNoTag(String p0){ return 0; }
|
||||
public static int computeTagSize(int p0){ return 0; }
|
||||
public static int computeUInt32Size(int p0, int p1){ return 0; }
|
||||
public static int computeUInt32SizeNoTag(int p0){ return 0; }
|
||||
public static int computeUInt64Size(int p0, long p1){ return 0; }
|
||||
public static int computeUInt64SizeNoTag(long p0){ return 0; }
|
||||
public static int computeUnknownGroupSize(int p0, MessageLite p1){ return 0; }
|
||||
public static int computeUnknownGroupSizeNoTag(MessageLite p0){ return 0; }
|
||||
public static int encodeZigZag32(int p0){ return 0; }
|
||||
public static long encodeZigZag64(long p0){ return 0; }
|
||||
public void checkNoSpaceLeft(){}
|
||||
public void flush(){}
|
||||
public void writeBool(int p0, boolean p1){}
|
||||
public void writeBoolNoTag(boolean p0){}
|
||||
public void writeBytes(int p0, ByteString p1){}
|
||||
public void writeBytesNoTag(ByteString p0){}
|
||||
public void writeDouble(int p0, double p1){}
|
||||
public void writeDoubleNoTag(double p0){}
|
||||
public void writeEnum(int p0, int p1){}
|
||||
public void writeEnumNoTag(int p0){}
|
||||
public void writeFixed32(int p0, int p1){}
|
||||
public void writeFixed32NoTag(int p0){}
|
||||
public void writeFixed64(int p0, long p1){}
|
||||
public void writeFixed64NoTag(long p0){}
|
||||
public void writeFloat(int p0, float p1){}
|
||||
public void writeFloatNoTag(float p0){}
|
||||
public void writeGroup(int p0, MessageLite p1){}
|
||||
public void writeGroupNoTag(MessageLite p0){}
|
||||
public void writeInt32(int p0, int p1){}
|
||||
public void writeInt32NoTag(int p0){}
|
||||
public void writeInt64(int p0, long p1){}
|
||||
public void writeInt64NoTag(long p0){}
|
||||
public void writeMessage(int p0, MessageLite p1){}
|
||||
public void writeMessageNoTag(MessageLite p0){}
|
||||
public void writeMessageSetExtension(int p0, MessageLite p1){}
|
||||
public void writeRawByte(byte p0){}
|
||||
public void writeRawByte(int p0){}
|
||||
public void writeRawBytes(ByteString p0){}
|
||||
public void writeRawBytes(ByteString p0, int p1, int p2){}
|
||||
public void writeRawBytes(byte[] p0){}
|
||||
public void writeRawBytes(byte[] p0, int p1, int p2){}
|
||||
public void writeRawLittleEndian32(int p0){}
|
||||
public void writeRawLittleEndian64(long p0){}
|
||||
public void writeRawMessageSetExtension(int p0, ByteString p1){}
|
||||
public void writeRawVarint32(int p0){}
|
||||
public void writeRawVarint64(long p0){}
|
||||
public void writeSFixed32(int p0, int p1){}
|
||||
public void writeSFixed32NoTag(int p0){}
|
||||
public void writeSFixed64(int p0, long p1){}
|
||||
public void writeSFixed64NoTag(long p0){}
|
||||
public void writeSInt32(int p0, int p1){}
|
||||
public void writeSInt32NoTag(int p0){}
|
||||
public void writeSInt64(int p0, long p1){}
|
||||
public void writeSInt64NoTag(long p0){}
|
||||
public void writeString(int p0, String p1){}
|
||||
public void writeStringNoTag(String p0){}
|
||||
public void writeTag(int p0, int p1){}
|
||||
public void writeUInt32(int p0, int p1){}
|
||||
public void writeUInt32NoTag(int p0){}
|
||||
public void writeUInt64(int p0, long p1){}
|
||||
public void writeUInt64NoTag(long p0){}
|
||||
public void writeUnknownGroup(int p0, MessageLite p1){}
|
||||
public void writeUnknownGroupNoTag(MessageLite p0){}
|
||||
}
|
||||
2308
java/ql/test/stubs/apache-hive/com/google/protobuf/DescriptorProtos.java
generated
Normal file
2308
java/ql/test/stubs/apache-hive/com/google/protobuf/DescriptorProtos.java
generated
Normal file
File diff suppressed because it is too large
Load Diff
161
java/ql/test/stubs/apache-hive/com/google/protobuf/Descriptors.java
generated
Normal file
161
java/ql/test/stubs/apache-hive/com/google/protobuf/Descriptors.java
generated
Normal file
@@ -0,0 +1,161 @@
|
||||
// Generated automatically from com.google.protobuf.Descriptors for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.DescriptorProtos;
|
||||
import com.google.protobuf.ExtensionRegistry;
|
||||
import com.google.protobuf.FieldSet;
|
||||
import com.google.protobuf.Internal;
|
||||
import com.google.protobuf.Message;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import com.google.protobuf.WireFormat;
|
||||
import java.util.List;
|
||||
|
||||
public class Descriptors
|
||||
{
|
||||
public interface GenericDescriptor {}
|
||||
public Descriptors(){}
|
||||
static public class Descriptor implements Descriptors.GenericDescriptor
|
||||
{
|
||||
protected Descriptor() {}
|
||||
public DescriptorProtos.DescriptorProto toProto(){ return null; }
|
||||
public DescriptorProtos.MessageOptions getOptions(){ return null; }
|
||||
public Descriptors.Descriptor findNestedTypeByName(String p0){ return null; }
|
||||
public Descriptors.Descriptor getContainingType(){ return null; }
|
||||
public Descriptors.EnumDescriptor findEnumTypeByName(String p0){ return null; }
|
||||
public Descriptors.FieldDescriptor findFieldByName(String p0){ return null; }
|
||||
public Descriptors.FieldDescriptor findFieldByNumber(int p0){ return null; }
|
||||
public Descriptors.FileDescriptor getFile(){ return null; }
|
||||
public List<Descriptors.Descriptor> getNestedTypes(){ return null; }
|
||||
public List<Descriptors.EnumDescriptor> getEnumTypes(){ return null; }
|
||||
public List<Descriptors.FieldDescriptor> getExtensions(){ return null; }
|
||||
public List<Descriptors.FieldDescriptor> getFields(){ return null; }
|
||||
public String getFullName(){ return null; }
|
||||
public String getName(){ return null; }
|
||||
public boolean isExtensionNumber(int p0){ return false; }
|
||||
public int getIndex(){ return 0; }
|
||||
}
|
||||
static public class DescriptorValidationException extends Exception
|
||||
{
|
||||
protected DescriptorValidationException() {}
|
||||
public Message getProblemProto(){ return null; }
|
||||
public String getDescription(){ return null; }
|
||||
public String getProblemSymbolName(){ return null; }
|
||||
}
|
||||
static public class EnumDescriptor implements Descriptors.GenericDescriptor, Internal.EnumLiteMap<Descriptors.EnumValueDescriptor>
|
||||
{
|
||||
protected EnumDescriptor() {}
|
||||
public DescriptorProtos.EnumDescriptorProto toProto(){ return null; }
|
||||
public DescriptorProtos.EnumOptions getOptions(){ return null; }
|
||||
public Descriptors.Descriptor getContainingType(){ return null; }
|
||||
public Descriptors.EnumValueDescriptor findValueByName(String p0){ return null; }
|
||||
public Descriptors.EnumValueDescriptor findValueByNumber(int p0){ return null; }
|
||||
public Descriptors.FileDescriptor getFile(){ return null; }
|
||||
public List<Descriptors.EnumValueDescriptor> getValues(){ return null; }
|
||||
public String getFullName(){ return null; }
|
||||
public String getName(){ return null; }
|
||||
public int getIndex(){ return 0; }
|
||||
}
|
||||
static public class EnumValueDescriptor implements Descriptors.GenericDescriptor, Internal.EnumLite
|
||||
{
|
||||
protected EnumValueDescriptor() {}
|
||||
public DescriptorProtos.EnumValueDescriptorProto toProto(){ return null; }
|
||||
public DescriptorProtos.EnumValueOptions getOptions(){ return null; }
|
||||
public Descriptors.EnumDescriptor getType(){ return null; }
|
||||
public Descriptors.FileDescriptor getFile(){ return null; }
|
||||
public String getFullName(){ return null; }
|
||||
public String getName(){ return null; }
|
||||
public int getIndex(){ return 0; }
|
||||
public int getNumber(){ return 0; }
|
||||
}
|
||||
static public class FieldDescriptor implements Comparable<Descriptors.FieldDescriptor>, Descriptors.GenericDescriptor, FieldSet.FieldDescriptorLite<Descriptors.FieldDescriptor>
|
||||
{
|
||||
protected FieldDescriptor() {}
|
||||
public DescriptorProtos.FieldDescriptorProto toProto(){ return null; }
|
||||
public DescriptorProtos.FieldOptions getOptions(){ return null; }
|
||||
public Descriptors.Descriptor getContainingType(){ return null; }
|
||||
public Descriptors.Descriptor getExtensionScope(){ return null; }
|
||||
public Descriptors.Descriptor getMessageType(){ return null; }
|
||||
public Descriptors.EnumDescriptor getEnumType(){ return null; }
|
||||
public Descriptors.FieldDescriptor.JavaType getJavaType(){ return null; }
|
||||
public Descriptors.FieldDescriptor.Type getType(){ return null; }
|
||||
public Descriptors.FileDescriptor getFile(){ return null; }
|
||||
public MessageLite.Builder internalMergeFrom(MessageLite.Builder p0, MessageLite p1){ return null; }
|
||||
public Object getDefaultValue(){ return null; }
|
||||
public String getFullName(){ return null; }
|
||||
public String getName(){ return null; }
|
||||
public WireFormat.FieldType getLiteType(){ return null; }
|
||||
public WireFormat.JavaType getLiteJavaType(){ return null; }
|
||||
public boolean hasDefaultValue(){ return false; }
|
||||
public boolean isExtension(){ return false; }
|
||||
public boolean isOptional(){ return false; }
|
||||
public boolean isPackable(){ return false; }
|
||||
public boolean isPacked(){ return false; }
|
||||
public boolean isRepeated(){ return false; }
|
||||
public boolean isRequired(){ return false; }
|
||||
public int compareTo(Descriptors.FieldDescriptor p0){ return 0; }
|
||||
public int getIndex(){ return 0; }
|
||||
public int getNumber(){ return 0; }
|
||||
static public enum JavaType
|
||||
{
|
||||
BOOLEAN, BYTE_STRING, DOUBLE, ENUM, FLOAT, INT, LONG, MESSAGE, STRING;
|
||||
private JavaType() {}
|
||||
}
|
||||
static public enum Type
|
||||
{
|
||||
BOOL, BYTES, DOUBLE, ENUM, FIXED32, FIXED64, FLOAT, GROUP, INT32, INT64, MESSAGE, SFIXED32, SFIXED64, SINT32, SINT64, STRING, UINT32, UINT64;
|
||||
private Type() {}
|
||||
public DescriptorProtos.FieldDescriptorProto.Type toProto(){ return null; }
|
||||
public Descriptors.FieldDescriptor.JavaType getJavaType(){ return null; }
|
||||
}
|
||||
}
|
||||
static public class FileDescriptor
|
||||
{
|
||||
protected FileDescriptor() {}
|
||||
public DescriptorProtos.FileDescriptorProto toProto(){ return null; }
|
||||
public DescriptorProtos.FileOptions getOptions(){ return null; }
|
||||
public Descriptors.Descriptor findMessageTypeByName(String p0){ return null; }
|
||||
public Descriptors.EnumDescriptor findEnumTypeByName(String p0){ return null; }
|
||||
public Descriptors.FieldDescriptor findExtensionByName(String p0){ return null; }
|
||||
public Descriptors.ServiceDescriptor findServiceByName(String p0){ return null; }
|
||||
public List<Descriptors.Descriptor> getMessageTypes(){ return null; }
|
||||
public List<Descriptors.EnumDescriptor> getEnumTypes(){ return null; }
|
||||
public List<Descriptors.FieldDescriptor> getExtensions(){ return null; }
|
||||
public List<Descriptors.FileDescriptor> getDependencies(){ return null; }
|
||||
public List<Descriptors.FileDescriptor> getPublicDependencies(){ return null; }
|
||||
public List<Descriptors.ServiceDescriptor> getServices(){ return null; }
|
||||
public String getName(){ return null; }
|
||||
public String getPackage(){ return null; }
|
||||
public static Descriptors.FileDescriptor buildFrom(DescriptorProtos.FileDescriptorProto p0, Descriptors.FileDescriptor[] p1){ return null; }
|
||||
public static void internalBuildGeneratedFileFrom(String[] p0, Descriptors.FileDescriptor[] p1, Descriptors.FileDescriptor.InternalDescriptorAssigner p2){}
|
||||
static public interface InternalDescriptorAssigner
|
||||
{
|
||||
ExtensionRegistry assignDescriptors(Descriptors.FileDescriptor p0);
|
||||
}
|
||||
}
|
||||
static public class MethodDescriptor implements Descriptors.GenericDescriptor
|
||||
{
|
||||
protected MethodDescriptor() {}
|
||||
public DescriptorProtos.MethodDescriptorProto toProto(){ return null; }
|
||||
public DescriptorProtos.MethodOptions getOptions(){ return null; }
|
||||
public Descriptors.Descriptor getInputType(){ return null; }
|
||||
public Descriptors.Descriptor getOutputType(){ return null; }
|
||||
public Descriptors.FileDescriptor getFile(){ return null; }
|
||||
public Descriptors.ServiceDescriptor getService(){ return null; }
|
||||
public String getFullName(){ return null; }
|
||||
public String getName(){ return null; }
|
||||
public int getIndex(){ return 0; }
|
||||
}
|
||||
static public class ServiceDescriptor implements Descriptors.GenericDescriptor
|
||||
{
|
||||
protected ServiceDescriptor() {}
|
||||
public DescriptorProtos.ServiceDescriptorProto toProto(){ return null; }
|
||||
public DescriptorProtos.ServiceOptions getOptions(){ return null; }
|
||||
public Descriptors.FileDescriptor getFile(){ return null; }
|
||||
public Descriptors.MethodDescriptor findMethodByName(String p0){ return null; }
|
||||
public List<Descriptors.MethodDescriptor> getMethods(){ return null; }
|
||||
public String getFullName(){ return null; }
|
||||
public String getName(){ return null; }
|
||||
public int getIndex(){ return 0; }
|
||||
}
|
||||
}
|
||||
27
java/ql/test/stubs/apache-hive/com/google/protobuf/ExtensionRegistry.java
generated
Normal file
27
java/ql/test/stubs/apache-hive/com/google/protobuf/ExtensionRegistry.java
generated
Normal file
@@ -0,0 +1,27 @@
|
||||
// Generated automatically from com.google.protobuf.ExtensionRegistry for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.Descriptors;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.GeneratedMessage;
|
||||
import com.google.protobuf.Message;
|
||||
|
||||
public class ExtensionRegistry extends ExtensionRegistryLite
|
||||
{
|
||||
protected ExtensionRegistry() {}
|
||||
public ExtensionRegistry getUnmodifiable(){ return null; }
|
||||
public ExtensionRegistry.ExtensionInfo findExtensionByName(String p0){ return null; }
|
||||
public ExtensionRegistry.ExtensionInfo findExtensionByNumber(Descriptors.Descriptor p0, int p1){ return null; }
|
||||
public static ExtensionRegistry getEmptyRegistry(){ return null; }
|
||||
public static ExtensionRegistry newInstance(){ return null; }
|
||||
public void add(Descriptors.FieldDescriptor p0){}
|
||||
public void add(Descriptors.FieldDescriptor p0, Message p1){}
|
||||
public void add(GeneratedMessage.GeneratedExtension<? extends Object, ? extends Object> p0){}
|
||||
static public class ExtensionInfo
|
||||
{
|
||||
protected ExtensionInfo() {}
|
||||
public final Descriptors.FieldDescriptor descriptor = null;
|
||||
public final Message defaultInstance = null;
|
||||
}
|
||||
}
|
||||
17
java/ql/test/stubs/apache-hive/com/google/protobuf/ExtensionRegistryLite.java
generated
Normal file
17
java/ql/test/stubs/apache-hive/com/google/protobuf/ExtensionRegistryLite.java
generated
Normal file
@@ -0,0 +1,17 @@
|
||||
// Generated automatically from com.google.protobuf.ExtensionRegistryLite for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.GeneratedMessageLite;
|
||||
import com.google.protobuf.MessageLite;
|
||||
|
||||
public class ExtensionRegistryLite
|
||||
{
|
||||
public <ContainingType extends MessageLite> GeneratedMessageLite.GeneratedExtension<ContainingType, ? extends Object> findLiteExtensionByNumber(ContainingType p0, int p1){ return null; }
|
||||
public ExtensionRegistryLite getUnmodifiable(){ return null; }
|
||||
public final void add(GeneratedMessageLite.GeneratedExtension<? extends Object, ? extends Object> p0){}
|
||||
public static ExtensionRegistryLite getEmptyRegistry(){ return null; }
|
||||
public static ExtensionRegistryLite newInstance(){ return null; }
|
||||
public static boolean isEagerlyParseMessageSets(){ return false; }
|
||||
public static void setEagerlyParseMessageSets(boolean p0){}
|
||||
}
|
||||
51
java/ql/test/stubs/apache-hive/com/google/protobuf/FieldSet.java
generated
Normal file
51
java/ql/test/stubs/apache-hive/com/google/protobuf/FieldSet.java
generated
Normal file
@@ -0,0 +1,51 @@
|
||||
// Generated automatically from com.google.protobuf.FieldSet for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.CodedOutputStream;
|
||||
import com.google.protobuf.Internal;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import com.google.protobuf.WireFormat;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
|
||||
class FieldSet<FieldDescriptorType extends FieldSet.FieldDescriptorLite<FieldDescriptorType>>
|
||||
{
|
||||
protected FieldSet() {}
|
||||
public FieldSet<FieldDescriptorType> clone(){ return null; }
|
||||
public Iterator<Map.Entry<FieldDescriptorType, Object>> iterator(){ return null; }
|
||||
public Map<FieldDescriptorType, Object> getAllFields(){ return null; }
|
||||
public Object getField(FieldDescriptorType p0){ return null; }
|
||||
public Object getRepeatedField(FieldDescriptorType p0, int p1){ return null; }
|
||||
public boolean hasField(FieldDescriptorType p0){ return false; }
|
||||
public boolean isImmutable(){ return false; }
|
||||
public boolean isInitialized(){ return false; }
|
||||
public int getMessageSetSerializedSize(){ return 0; }
|
||||
public int getRepeatedFieldCount(FieldDescriptorType p0){ return 0; }
|
||||
public int getSerializedSize(){ return 0; }
|
||||
public static <T extends FieldSet.FieldDescriptorLite<T>> com.google.protobuf.FieldSet<T> emptySet(){ return null; }
|
||||
public static <T extends FieldSet.FieldDescriptorLite<T>> com.google.protobuf.FieldSet<T> newFieldSet(){ return null; }
|
||||
public static Object readPrimitiveField(CodedInputStream p0, WireFormat.FieldType p1){ return null; }
|
||||
public static int computeFieldSize(FieldSet.FieldDescriptorLite<? extends Object> p0, Object p1){ return 0; }
|
||||
public static void writeField(FieldSet.FieldDescriptorLite<? extends Object> p0, Object p1, CodedOutputStream p2){}
|
||||
public void addRepeatedField(FieldDescriptorType p0, Object p1){}
|
||||
public void clear(){}
|
||||
public void clearField(FieldDescriptorType p0){}
|
||||
public void makeImmutable(){}
|
||||
public void mergeFrom(FieldSet<FieldDescriptorType> p0){}
|
||||
public void setField(FieldDescriptorType p0, Object p1){}
|
||||
public void setRepeatedField(FieldDescriptorType p0, int p1, Object p2){}
|
||||
public void writeMessageSetTo(CodedOutputStream p0){}
|
||||
public void writeTo(CodedOutputStream p0){}
|
||||
static public interface FieldDescriptorLite<T extends FieldSet.FieldDescriptorLite<T>> extends java.lang.Comparable<T>
|
||||
{
|
||||
Internal.EnumLiteMap<? extends Object> getEnumType();
|
||||
MessageLite.Builder internalMergeFrom(MessageLite.Builder p0, MessageLite p1);
|
||||
WireFormat.FieldType getLiteType();
|
||||
WireFormat.JavaType getLiteJavaType();
|
||||
boolean isPacked();
|
||||
boolean isRepeated();
|
||||
int getNumber();
|
||||
}
|
||||
}
|
||||
150
java/ql/test/stubs/apache-hive/com/google/protobuf/GeneratedMessage.java
generated
Normal file
150
java/ql/test/stubs/apache-hive/com/google/protobuf/GeneratedMessage.java
generated
Normal file
@@ -0,0 +1,150 @@
|
||||
// Generated automatically from com.google.protobuf.GeneratedMessage for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.AbstractMessage;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.CodedOutputStream;
|
||||
import com.google.protobuf.Descriptors;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.Message;
|
||||
import com.google.protobuf.MessageOrBuilder;
|
||||
import com.google.protobuf.Parser;
|
||||
import com.google.protobuf.UnknownFieldSet;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
abstract public class GeneratedMessage extends AbstractMessage implements Serializable
|
||||
{
|
||||
abstract static public class Builder<BuilderType extends GeneratedMessage.Builder> extends AbstractMessage.Builder<BuilderType>
|
||||
{
|
||||
protected Builder(){}
|
||||
protected Builder(GeneratedMessage.BuilderParent p0){}
|
||||
protected GeneratedMessage.BuilderParent getParentForChildren(){ return null; }
|
||||
protected abstract GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable();
|
||||
protected boolean isClean(){ return false; }
|
||||
protected boolean parseUnknownField(CodedInputStream p0, UnknownFieldSet.Builder p1, ExtensionRegistryLite p2, int p3){ return false; }
|
||||
protected final void onChanged(){}
|
||||
protected void markClean(){}
|
||||
protected void onBuilt(){}
|
||||
public BuilderType addRepeatedField(Descriptors.FieldDescriptor p0, Object p1){ return null; }
|
||||
public BuilderType clear(){ return null; }
|
||||
public BuilderType clearField(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public BuilderType clone(){ return null; }
|
||||
public BuilderType setField(Descriptors.FieldDescriptor p0, Object p1){ return null; }
|
||||
public BuilderType setRepeatedField(Descriptors.FieldDescriptor p0, int p1, Object p2){ return null; }
|
||||
public Descriptors.Descriptor getDescriptorForType(){ return null; }
|
||||
public Map<Descriptors.FieldDescriptor, Object> getAllFields(){ return null; }
|
||||
public Message.Builder getFieldBuilder(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public Message.Builder newBuilderForField(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public Object getField(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public Object getRepeatedField(Descriptors.FieldDescriptor p0, int p1){ return null; }
|
||||
public boolean hasField(Descriptors.FieldDescriptor p0){ return false; }
|
||||
public boolean isInitialized(){ return false; }
|
||||
public final BuilderType mergeUnknownFields(UnknownFieldSet p0){ return null; }
|
||||
public final BuilderType setUnknownFields(UnknownFieldSet p0){ return null; }
|
||||
public final UnknownFieldSet getUnknownFields(){ return null; }
|
||||
public int getRepeatedFieldCount(Descriptors.FieldDescriptor p0){ return 0; }
|
||||
}
|
||||
abstract static public class ExtendableBuilder<MessageType extends GeneratedMessage.ExtendableMessage, BuilderType extends GeneratedMessage.ExtendableBuilder> extends GeneratedMessage.Builder<BuilderType> implements GeneratedMessage.ExtendableMessageOrBuilder<MessageType>
|
||||
{
|
||||
protected ExtendableBuilder(){}
|
||||
protected ExtendableBuilder(GeneratedMessage.BuilderParent p0){}
|
||||
protected boolean extensionsAreInitialized(){ return false; }
|
||||
protected boolean parseUnknownField(CodedInputStream p0, UnknownFieldSet.Builder p1, ExtensionRegistryLite p2, int p3){ return false; }
|
||||
protected final void mergeExtensionFields(GeneratedMessage.ExtendableMessage p0){}
|
||||
public BuilderType addRepeatedField(Descriptors.FieldDescriptor p0, Object p1){ return null; }
|
||||
public BuilderType clear(){ return null; }
|
||||
public BuilderType clearField(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public BuilderType clone(){ return null; }
|
||||
public BuilderType setField(Descriptors.FieldDescriptor p0, Object p1){ return null; }
|
||||
public BuilderType setRepeatedField(Descriptors.FieldDescriptor p0, int p1, Object p2){ return null; }
|
||||
public Map<Descriptors.FieldDescriptor, Object> getAllFields(){ return null; }
|
||||
public Object getField(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public Object getRepeatedField(Descriptors.FieldDescriptor p0, int p1){ return null; }
|
||||
public boolean hasField(Descriptors.FieldDescriptor p0){ return false; }
|
||||
public boolean isInitialized(){ return false; }
|
||||
public final <Type> BuilderType addExtension(GeneratedMessage.GeneratedExtension<MessageType, java.util.List<Type>> p0, Type p1){ return null; }
|
||||
public final <Type> BuilderType clearExtension(GeneratedMessage.GeneratedExtension<MessageType, ? extends Object> p0){ return null; }
|
||||
public final <Type> BuilderType setExtension(GeneratedMessage.GeneratedExtension<MessageType, Type> p0, Type p1){ return null; }
|
||||
public final <Type> BuilderType setExtension(GeneratedMessage.GeneratedExtension<MessageType, java.util.List<Type>> p0, int p1, Type p2){ return null; }
|
||||
public final <Type> Type getExtension(GeneratedMessage.GeneratedExtension<MessageType, Type> p0){ return null; }
|
||||
public final <Type> Type getExtension(GeneratedMessage.GeneratedExtension<MessageType, java.util.List<Type>> p0, int p1){ return null; }
|
||||
public final <Type> boolean hasExtension(GeneratedMessage.GeneratedExtension<MessageType, Type> p0){ return false; }
|
||||
public final <Type> int getExtensionCount(GeneratedMessage.GeneratedExtension<MessageType, java.util.List<Type>> p0){ return 0; }
|
||||
public int getRepeatedFieldCount(Descriptors.FieldDescriptor p0){ return 0; }
|
||||
}
|
||||
abstract static public class ExtendableMessage<MessageType extends GeneratedMessage.ExtendableMessage> extends GeneratedMessage implements GeneratedMessage.ExtendableMessageOrBuilder<MessageType>
|
||||
{
|
||||
class ExtensionWriter
|
||||
{
|
||||
protected ExtensionWriter() {}
|
||||
public void writeUntil(int p0, CodedOutputStream p1){}
|
||||
}
|
||||
protected ExtendableMessage(){}
|
||||
protected ExtendableMessage(GeneratedMessage.ExtendableBuilder<MessageType, ? extends Object> p0){}
|
||||
protected GeneratedMessage.ExtendableMessage.ExtensionWriter newExtensionWriter(){ return null; }
|
||||
protected GeneratedMessage.ExtendableMessage.ExtensionWriter newMessageSetExtensionWriter(){ return null; }
|
||||
protected Map<Descriptors.FieldDescriptor, Object> getExtensionFields(){ return null; }
|
||||
protected boolean extensionsAreInitialized(){ return false; }
|
||||
protected boolean parseUnknownField(CodedInputStream p0, UnknownFieldSet.Builder p1, ExtensionRegistryLite p2, int p3){ return false; }
|
||||
protected int extensionsSerializedSize(){ return 0; }
|
||||
protected int extensionsSerializedSizeAsMessageSet(){ return 0; }
|
||||
protected void makeExtensionsImmutable(){}
|
||||
public Map<Descriptors.FieldDescriptor, Object> getAllFields(){ return null; }
|
||||
public Object getField(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public Object getRepeatedField(Descriptors.FieldDescriptor p0, int p1){ return null; }
|
||||
public boolean hasField(Descriptors.FieldDescriptor p0){ return false; }
|
||||
public boolean isInitialized(){ return false; }
|
||||
public final <Type> Type getExtension(GeneratedMessage.GeneratedExtension<MessageType, Type> p0){ return null; }
|
||||
public final <Type> Type getExtension(GeneratedMessage.GeneratedExtension<MessageType, java.util.List<Type>> p0, int p1){ return null; }
|
||||
public final <Type> boolean hasExtension(GeneratedMessage.GeneratedExtension<MessageType, Type> p0){ return false; }
|
||||
public final <Type> int getExtensionCount(GeneratedMessage.GeneratedExtension<MessageType, java.util.List<Type>> p0){ return 0; }
|
||||
public int getRepeatedFieldCount(Descriptors.FieldDescriptor p0){ return 0; }
|
||||
}
|
||||
protected GeneratedMessage(){}
|
||||
protected GeneratedMessage(GeneratedMessage.Builder<? extends Object> p0){}
|
||||
protected Object writeReplace(){ return null; }
|
||||
protected abstract GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable();
|
||||
protected abstract Message.Builder newBuilderForType(GeneratedMessage.BuilderParent p0);
|
||||
protected boolean parseUnknownField(CodedInputStream p0, UnknownFieldSet.Builder p1, ExtensionRegistryLite p2, int p3){ return false; }
|
||||
protected static boolean alwaysUseFieldBuilders = false;
|
||||
protected void makeExtensionsImmutable(){}
|
||||
public Descriptors.Descriptor getDescriptorForType(){ return null; }
|
||||
public Map<Descriptors.FieldDescriptor, Object> getAllFields(){ return null; }
|
||||
public Object getField(Descriptors.FieldDescriptor p0){ return null; }
|
||||
public Object getRepeatedField(Descriptors.FieldDescriptor p0, int p1){ return null; }
|
||||
public Parser<? extends Message> getParserForType(){ return null; }
|
||||
public UnknownFieldSet getUnknownFields(){ return null; }
|
||||
public boolean hasField(Descriptors.FieldDescriptor p0){ return false; }
|
||||
public boolean isInitialized(){ return false; }
|
||||
public int getRepeatedFieldCount(Descriptors.FieldDescriptor p0){ return 0; }
|
||||
public static <ContainingType extends Message, Type> GeneratedMessage.GeneratedExtension<ContainingType, Type> newFileScopedGeneratedExtension(Class p0, Message p1){ return null; }
|
||||
public static <ContainingType extends Message, Type> GeneratedMessage.GeneratedExtension<ContainingType, Type> newMessageScopedGeneratedExtension(Message p0, int p1, Class p2, Message p3){ return null; }
|
||||
public static interface BuilderParent
|
||||
{
|
||||
void markDirty();
|
||||
}
|
||||
static public class FieldAccessorTable
|
||||
{
|
||||
protected FieldAccessorTable() {}
|
||||
public FieldAccessorTable(Descriptors.Descriptor p0, String[] p1){}
|
||||
public FieldAccessorTable(Descriptors.Descriptor p0, String[] p1, Class<? extends GeneratedMessage> p2, Class<? extends GeneratedMessage.Builder> p3){}
|
||||
public GeneratedMessage.FieldAccessorTable ensureFieldAccessorsInitialized(Class<? extends GeneratedMessage> p0, Class<? extends GeneratedMessage.Builder> p1){ return null; }
|
||||
}
|
||||
static public class GeneratedExtension<ContainingType extends Message, Type>
|
||||
{
|
||||
protected GeneratedExtension() {}
|
||||
public Descriptors.FieldDescriptor getDescriptor(){ return null; }
|
||||
public Message getMessageDefaultInstance(){ return null; }
|
||||
public void internalInit(Descriptors.FieldDescriptor p0){}
|
||||
}
|
||||
static public interface ExtendableMessageOrBuilder<MessageType extends GeneratedMessage.ExtendableMessage> extends MessageOrBuilder
|
||||
{
|
||||
<Type> Type getExtension(GeneratedMessage.GeneratedExtension<MessageType, Type> p0);
|
||||
<Type> Type getExtension(GeneratedMessage.GeneratedExtension<MessageType, java.util.List<Type>> p0, int p1);
|
||||
<Type> boolean hasExtension(GeneratedMessage.GeneratedExtension<MessageType, Type> p0);
|
||||
<Type> int getExtensionCount(GeneratedMessage.GeneratedExtension<MessageType, java.util.List<Type>> p0);
|
||||
}
|
||||
}
|
||||
40
java/ql/test/stubs/apache-hive/com/google/protobuf/GeneratedMessageLite.java
generated
Normal file
40
java/ql/test/stubs/apache-hive/com/google/protobuf/GeneratedMessageLite.java
generated
Normal file
@@ -0,0 +1,40 @@
|
||||
// Generated automatically from com.google.protobuf.GeneratedMessageLite for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.AbstractMessageLite;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.Internal;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import com.google.protobuf.Parser;
|
||||
import com.google.protobuf.WireFormat;
|
||||
import java.io.Serializable;
|
||||
|
||||
abstract public class GeneratedMessageLite extends AbstractMessageLite implements Serializable
|
||||
{
|
||||
abstract static public class Builder<MessageType extends GeneratedMessageLite, BuilderType extends GeneratedMessageLite.Builder> extends AbstractMessageLite.Builder<BuilderType>
|
||||
{
|
||||
protected Builder(){}
|
||||
protected boolean parseUnknownField(CodedInputStream p0, ExtensionRegistryLite p1, int p2){ return false; }
|
||||
public BuilderType clear(){ return null; }
|
||||
public BuilderType clone(){ return null; }
|
||||
public abstract BuilderType mergeFrom(MessageType p0);
|
||||
public abstract MessageType getDefaultInstanceForType();
|
||||
}
|
||||
protected GeneratedMessageLite(){}
|
||||
protected GeneratedMessageLite(GeneratedMessageLite.Builder p0){}
|
||||
protected Object writeReplace(){ return null; }
|
||||
protected boolean parseUnknownField(CodedInputStream p0, ExtensionRegistryLite p1, int p2){ return false; }
|
||||
protected void makeExtensionsImmutable(){}
|
||||
public Parser<? extends MessageLite> getParserForType(){ return null; }
|
||||
public static <ContainingType extends MessageLite, Type> GeneratedMessageLite.GeneratedExtension<ContainingType, Type> newRepeatedGeneratedExtension(ContainingType p0, MessageLite p1, Internal.EnumLiteMap<? extends Object> p2, int p3, WireFormat.FieldType p4, boolean p5){ return null; }
|
||||
public static <ContainingType extends MessageLite, Type> GeneratedMessageLite.GeneratedExtension<ContainingType, Type> newSingularGeneratedExtension(ContainingType p0, Type p1, MessageLite p2, Internal.EnumLiteMap<? extends Object> p3, int p4, WireFormat.FieldType p5){ return null; }
|
||||
static public class GeneratedExtension<ContainingType extends MessageLite, Type>
|
||||
{
|
||||
protected GeneratedExtension() {}
|
||||
public ContainingType getContainingTypeDefaultInstance(){ return null; }
|
||||
public MessageLite getMessageDefaultInstance(){ return null; }
|
||||
public int getNumber(){ return 0; }
|
||||
}
|
||||
}
|
||||
21
java/ql/test/stubs/apache-hive/com/google/protobuf/Internal.java
generated
Normal file
21
java/ql/test/stubs/apache-hive/com/google/protobuf/Internal.java
generated
Normal file
@@ -0,0 +1,21 @@
|
||||
// Generated automatically from com.google.protobuf.Internal for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
|
||||
public class Internal
|
||||
{
|
||||
public Internal(){}
|
||||
public static ByteString bytesDefaultValue(String p0){ return null; }
|
||||
public static String stringDefaultValue(String p0){ return null; }
|
||||
public static boolean isValidUtf8(ByteString p0){ return false; }
|
||||
static public interface EnumLite
|
||||
{
|
||||
int getNumber();
|
||||
}
|
||||
static public interface EnumLiteMap<T extends Internal.EnumLite>
|
||||
{
|
||||
T findValueByNumber(int p0);
|
||||
}
|
||||
}
|
||||
14
java/ql/test/stubs/apache-hive/com/google/protobuf/InvalidProtocolBufferException.java
generated
Normal file
14
java/ql/test/stubs/apache-hive/com/google/protobuf/InvalidProtocolBufferException.java
generated
Normal file
@@ -0,0 +1,14 @@
|
||||
// Generated automatically from com.google.protobuf.InvalidProtocolBufferException for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.MessageLite;
|
||||
import java.io.IOException;
|
||||
|
||||
public class InvalidProtocolBufferException extends IOException
|
||||
{
|
||||
protected InvalidProtocolBufferException() {}
|
||||
public InvalidProtocolBufferException setUnfinishedMessage(MessageLite p0){ return null; }
|
||||
public InvalidProtocolBufferException(String p0){}
|
||||
public MessageLite getUnfinishedMessage(){ return null; }
|
||||
}
|
||||
20
java/ql/test/stubs/apache-hive/com/google/protobuf/LazyField.java
generated
Normal file
20
java/ql/test/stubs/apache-hive/com/google/protobuf/LazyField.java
generated
Normal file
@@ -0,0 +1,20 @@
|
||||
// Generated automatically from com.google.protobuf.LazyField for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.MessageLite;
|
||||
|
||||
class LazyField
|
||||
{
|
||||
protected LazyField() {}
|
||||
public ByteString toByteString(){ return null; }
|
||||
public LazyField(MessageLite p0, ExtensionRegistryLite p1, ByteString p2){}
|
||||
public MessageLite getValue(){ return null; }
|
||||
public MessageLite setValue(MessageLite p0){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public int getSerializedSize(){ return 0; }
|
||||
public int hashCode(){ return 0; }
|
||||
}
|
||||
52
java/ql/test/stubs/apache-hive/com/google/protobuf/Message.java
generated
Normal file
52
java/ql/test/stubs/apache-hive/com/google/protobuf/Message.java
generated
Normal file
@@ -0,0 +1,52 @@
|
||||
// Generated automatically from com.google.protobuf.Message for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.Descriptors;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import com.google.protobuf.MessageOrBuilder;
|
||||
import com.google.protobuf.Parser;
|
||||
import com.google.protobuf.UnknownFieldSet;
|
||||
import java.io.InputStream;
|
||||
|
||||
public interface Message extends MessageLite, MessageOrBuilder
|
||||
{
|
||||
Message.Builder newBuilderForType();
|
||||
Message.Builder toBuilder();
|
||||
Parser<? extends Message> getParserForType();
|
||||
String toString();
|
||||
boolean equals(Object p0);
|
||||
int hashCode();
|
||||
static public interface Builder extends MessageLite.Builder, MessageOrBuilder
|
||||
{
|
||||
Descriptors.Descriptor getDescriptorForType();
|
||||
Message build();
|
||||
Message buildPartial();
|
||||
Message.Builder addRepeatedField(Descriptors.FieldDescriptor p0, Object p1);
|
||||
Message.Builder clear();
|
||||
Message.Builder clearField(Descriptors.FieldDescriptor p0);
|
||||
Message.Builder clone();
|
||||
Message.Builder getFieldBuilder(Descriptors.FieldDescriptor p0);
|
||||
Message.Builder mergeFrom(ByteString p0);
|
||||
Message.Builder mergeFrom(ByteString p0, ExtensionRegistryLite p1);
|
||||
Message.Builder mergeFrom(CodedInputStream p0);
|
||||
Message.Builder mergeFrom(CodedInputStream p0, ExtensionRegistryLite p1);
|
||||
Message.Builder mergeFrom(InputStream p0);
|
||||
Message.Builder mergeFrom(InputStream p0, ExtensionRegistryLite p1);
|
||||
Message.Builder mergeFrom(Message p0);
|
||||
Message.Builder mergeFrom(byte[] p0);
|
||||
Message.Builder mergeFrom(byte[] p0, ExtensionRegistryLite p1);
|
||||
Message.Builder mergeFrom(byte[] p0, int p1, int p2);
|
||||
Message.Builder mergeFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3);
|
||||
Message.Builder mergeUnknownFields(UnknownFieldSet p0);
|
||||
Message.Builder newBuilderForField(Descriptors.FieldDescriptor p0);
|
||||
Message.Builder setField(Descriptors.FieldDescriptor p0, Object p1);
|
||||
Message.Builder setRepeatedField(Descriptors.FieldDescriptor p0, int p1, Object p2);
|
||||
Message.Builder setUnknownFields(UnknownFieldSet p0);
|
||||
boolean mergeDelimitedFrom(InputStream p0);
|
||||
boolean mergeDelimitedFrom(InputStream p0, ExtensionRegistryLite p1);
|
||||
}
|
||||
}
|
||||
44
java/ql/test/stubs/apache-hive/com/google/protobuf/MessageLite.java
generated
Normal file
44
java/ql/test/stubs/apache-hive/com/google/protobuf/MessageLite.java
generated
Normal file
@@ -0,0 +1,44 @@
|
||||
// Generated automatically from com.google.protobuf.MessageLite for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.CodedOutputStream;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.MessageLiteOrBuilder;
|
||||
import com.google.protobuf.Parser;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
|
||||
public interface MessageLite extends MessageLiteOrBuilder
|
||||
{
|
||||
ByteString toByteString();
|
||||
MessageLite.Builder newBuilderForType();
|
||||
MessageLite.Builder toBuilder();
|
||||
Parser<? extends MessageLite> getParserForType();
|
||||
byte[] toByteArray();
|
||||
int getSerializedSize();
|
||||
static public interface Builder extends Cloneable, MessageLiteOrBuilder
|
||||
{
|
||||
MessageLite build();
|
||||
MessageLite buildPartial();
|
||||
MessageLite.Builder clear();
|
||||
MessageLite.Builder clone();
|
||||
MessageLite.Builder mergeFrom(ByteString p0);
|
||||
MessageLite.Builder mergeFrom(ByteString p0, ExtensionRegistryLite p1);
|
||||
MessageLite.Builder mergeFrom(CodedInputStream p0);
|
||||
MessageLite.Builder mergeFrom(CodedInputStream p0, ExtensionRegistryLite p1);
|
||||
MessageLite.Builder mergeFrom(InputStream p0);
|
||||
MessageLite.Builder mergeFrom(InputStream p0, ExtensionRegistryLite p1);
|
||||
MessageLite.Builder mergeFrom(byte[] p0);
|
||||
MessageLite.Builder mergeFrom(byte[] p0, ExtensionRegistryLite p1);
|
||||
MessageLite.Builder mergeFrom(byte[] p0, int p1, int p2);
|
||||
MessageLite.Builder mergeFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3);
|
||||
boolean mergeDelimitedFrom(InputStream p0);
|
||||
boolean mergeDelimitedFrom(InputStream p0, ExtensionRegistryLite p1);
|
||||
}
|
||||
void writeDelimitedTo(OutputStream p0);
|
||||
void writeTo(CodedOutputStream p0);
|
||||
void writeTo(OutputStream p0);
|
||||
}
|
||||
11
java/ql/test/stubs/apache-hive/com/google/protobuf/MessageLiteOrBuilder.java
generated
Normal file
11
java/ql/test/stubs/apache-hive/com/google/protobuf/MessageLiteOrBuilder.java
generated
Normal file
@@ -0,0 +1,11 @@
|
||||
// Generated automatically from com.google.protobuf.MessageLiteOrBuilder for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.MessageLite;
|
||||
|
||||
public interface MessageLiteOrBuilder
|
||||
{
|
||||
MessageLite getDefaultInstanceForType();
|
||||
boolean isInitialized();
|
||||
}
|
||||
24
java/ql/test/stubs/apache-hive/com/google/protobuf/MessageOrBuilder.java
generated
Normal file
24
java/ql/test/stubs/apache-hive/com/google/protobuf/MessageOrBuilder.java
generated
Normal file
@@ -0,0 +1,24 @@
|
||||
// Generated automatically from com.google.protobuf.MessageOrBuilder for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.Descriptors;
|
||||
import com.google.protobuf.Message;
|
||||
import com.google.protobuf.MessageLiteOrBuilder;
|
||||
import com.google.protobuf.UnknownFieldSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface MessageOrBuilder extends MessageLiteOrBuilder
|
||||
{
|
||||
Descriptors.Descriptor getDescriptorForType();
|
||||
List<String> findInitializationErrors();
|
||||
Map<Descriptors.FieldDescriptor, Object> getAllFields();
|
||||
Message getDefaultInstanceForType();
|
||||
Object getField(Descriptors.FieldDescriptor p0);
|
||||
Object getRepeatedField(Descriptors.FieldDescriptor p0, int p1);
|
||||
String getInitializationErrorString();
|
||||
UnknownFieldSet getUnknownFields();
|
||||
boolean hasField(Descriptors.FieldDescriptor p0);
|
||||
int getRepeatedFieldCount(Descriptors.FieldDescriptor p0);
|
||||
}
|
||||
36
java/ql/test/stubs/apache-hive/com/google/protobuf/Parser.java
generated
Normal file
36
java/ql/test/stubs/apache-hive/com/google/protobuf/Parser.java
generated
Normal file
@@ -0,0 +1,36 @@
|
||||
// Generated automatically from com.google.protobuf.Parser for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import java.io.InputStream;
|
||||
|
||||
public interface Parser<MessageType>
|
||||
{
|
||||
MessageType parseDelimitedFrom(InputStream p0);
|
||||
MessageType parseDelimitedFrom(InputStream p0, ExtensionRegistryLite p1);
|
||||
MessageType parseFrom(ByteString p0);
|
||||
MessageType parseFrom(ByteString p0, ExtensionRegistryLite p1);
|
||||
MessageType parseFrom(CodedInputStream p0);
|
||||
MessageType parseFrom(CodedInputStream p0, ExtensionRegistryLite p1);
|
||||
MessageType parseFrom(InputStream p0);
|
||||
MessageType parseFrom(InputStream p0, ExtensionRegistryLite p1);
|
||||
MessageType parseFrom(byte[] p0);
|
||||
MessageType parseFrom(byte[] p0, ExtensionRegistryLite p1);
|
||||
MessageType parseFrom(byte[] p0, int p1, int p2);
|
||||
MessageType parseFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3);
|
||||
MessageType parsePartialDelimitedFrom(InputStream p0);
|
||||
MessageType parsePartialDelimitedFrom(InputStream p0, ExtensionRegistryLite p1);
|
||||
MessageType parsePartialFrom(ByteString p0);
|
||||
MessageType parsePartialFrom(ByteString p0, ExtensionRegistryLite p1);
|
||||
MessageType parsePartialFrom(CodedInputStream p0);
|
||||
MessageType parsePartialFrom(CodedInputStream p0, ExtensionRegistryLite p1);
|
||||
MessageType parsePartialFrom(InputStream p0);
|
||||
MessageType parsePartialFrom(InputStream p0, ExtensionRegistryLite p1);
|
||||
MessageType parsePartialFrom(byte[] p0);
|
||||
MessageType parsePartialFrom(byte[] p0, ExtensionRegistryLite p1);
|
||||
MessageType parsePartialFrom(byte[] p0, int p1, int p2);
|
||||
MessageType parsePartialFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3);
|
||||
}
|
||||
13
java/ql/test/stubs/apache-hive/com/google/protobuf/ProtocolMessageEnum.java
generated
Normal file
13
java/ql/test/stubs/apache-hive/com/google/protobuf/ProtocolMessageEnum.java
generated
Normal file
@@ -0,0 +1,13 @@
|
||||
// Generated automatically from com.google.protobuf.ProtocolMessageEnum for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.Descriptors;
|
||||
import com.google.protobuf.Internal;
|
||||
|
||||
public interface ProtocolMessageEnum extends Internal.EnumLite
|
||||
{
|
||||
Descriptors.EnumDescriptor getDescriptorForType();
|
||||
Descriptors.EnumValueDescriptor getValueDescriptor();
|
||||
int getNumber();
|
||||
}
|
||||
16
java/ql/test/stubs/apache-hive/com/google/protobuf/UninitializedMessageException.java
generated
Normal file
16
java/ql/test/stubs/apache-hive/com/google/protobuf/UninitializedMessageException.java
generated
Normal file
@@ -0,0 +1,16 @@
|
||||
// Generated automatically from com.google.protobuf.UninitializedMessageException for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.InvalidProtocolBufferException;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import java.util.List;
|
||||
|
||||
public class UninitializedMessageException extends RuntimeException
|
||||
{
|
||||
protected UninitializedMessageException() {}
|
||||
public InvalidProtocolBufferException asInvalidProtocolBufferException(){ return null; }
|
||||
public List<String> getMissingFields(){ return null; }
|
||||
public UninitializedMessageException(List<String> p0){}
|
||||
public UninitializedMessageException(MessageLite p0){}
|
||||
}
|
||||
109
java/ql/test/stubs/apache-hive/com/google/protobuf/UnknownFieldSet.java
generated
Normal file
109
java/ql/test/stubs/apache-hive/com/google/protobuf/UnknownFieldSet.java
generated
Normal file
@@ -0,0 +1,109 @@
|
||||
// Generated automatically from com.google.protobuf.UnknownFieldSet for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
import com.google.protobuf.AbstractParser;
|
||||
import com.google.protobuf.ByteString;
|
||||
import com.google.protobuf.CodedInputStream;
|
||||
import com.google.protobuf.CodedOutputStream;
|
||||
import com.google.protobuf.ExtensionRegistryLite;
|
||||
import com.google.protobuf.MessageLite;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class UnknownFieldSet implements MessageLite
|
||||
{
|
||||
protected UnknownFieldSet() {}
|
||||
public ByteString toByteString(){ return null; }
|
||||
public Map<Integer, UnknownFieldSet.Field> asMap(){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public UnknownFieldSet getDefaultInstanceForType(){ return null; }
|
||||
public UnknownFieldSet.Builder newBuilderForType(){ return null; }
|
||||
public UnknownFieldSet.Builder toBuilder(){ return null; }
|
||||
public UnknownFieldSet.Field getField(int p0){ return null; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public boolean hasField(int p0){ return false; }
|
||||
public boolean isInitialized(){ return false; }
|
||||
public byte[] toByteArray(){ return null; }
|
||||
public final UnknownFieldSet.Parser getParserForType(){ return null; }
|
||||
public int getSerializedSize(){ return 0; }
|
||||
public int getSerializedSizeAsMessageSet(){ return 0; }
|
||||
public int hashCode(){ return 0; }
|
||||
public static UnknownFieldSet getDefaultInstance(){ return null; }
|
||||
public static UnknownFieldSet parseFrom(ByteString p0){ return null; }
|
||||
public static UnknownFieldSet parseFrom(CodedInputStream p0){ return null; }
|
||||
public static UnknownFieldSet parseFrom(InputStream p0){ return null; }
|
||||
public static UnknownFieldSet parseFrom(byte[] p0){ return null; }
|
||||
public static UnknownFieldSet.Builder newBuilder(){ return null; }
|
||||
public static UnknownFieldSet.Builder newBuilder(UnknownFieldSet p0){ return null; }
|
||||
public void writeAsMessageSetTo(CodedOutputStream p0){}
|
||||
public void writeDelimitedTo(OutputStream p0){}
|
||||
public void writeTo(CodedOutputStream p0){}
|
||||
public void writeTo(OutputStream p0){}
|
||||
static public class Builder implements MessageLite.Builder
|
||||
{
|
||||
protected Builder() {}
|
||||
public Map<Integer, UnknownFieldSet.Field> asMap(){ return null; }
|
||||
public UnknownFieldSet build(){ return null; }
|
||||
public UnknownFieldSet buildPartial(){ return null; }
|
||||
public UnknownFieldSet getDefaultInstanceForType(){ return null; }
|
||||
public UnknownFieldSet.Builder addField(int p0, UnknownFieldSet.Field p1){ return null; }
|
||||
public UnknownFieldSet.Builder clear(){ return null; }
|
||||
public UnknownFieldSet.Builder clone(){ return null; }
|
||||
public UnknownFieldSet.Builder mergeField(int p0, UnknownFieldSet.Field p1){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(ByteString p0){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(ByteString p0, ExtensionRegistryLite p1){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(CodedInputStream p0){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(CodedInputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(InputStream p0){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(InputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(UnknownFieldSet p0){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(byte[] p0){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(byte[] p0, ExtensionRegistryLite p1){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(byte[] p0, int p1, int p2){ return null; }
|
||||
public UnknownFieldSet.Builder mergeFrom(byte[] p0, int p1, int p2, ExtensionRegistryLite p3){ return null; }
|
||||
public UnknownFieldSet.Builder mergeVarintField(int p0, int p1){ return null; }
|
||||
public boolean hasField(int p0){ return false; }
|
||||
public boolean isInitialized(){ return false; }
|
||||
public boolean mergeDelimitedFrom(InputStream p0){ return false; }
|
||||
public boolean mergeDelimitedFrom(InputStream p0, ExtensionRegistryLite p1){ return false; }
|
||||
public boolean mergeFieldFrom(int p0, CodedInputStream p1){ return false; }
|
||||
}
|
||||
static public class Field
|
||||
{
|
||||
protected Field() {}
|
||||
public List<ByteString> getLengthDelimitedList(){ return null; }
|
||||
public List<Integer> getFixed32List(){ return null; }
|
||||
public List<Long> getFixed64List(){ return null; }
|
||||
public List<Long> getVarintList(){ return null; }
|
||||
public List<UnknownFieldSet> getGroupList(){ return null; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public int getSerializedSize(int p0){ return 0; }
|
||||
public int getSerializedSizeAsMessageSetExtension(int p0){ return 0; }
|
||||
public int hashCode(){ return 0; }
|
||||
public static UnknownFieldSet.Field getDefaultInstance(){ return null; }
|
||||
public static UnknownFieldSet.Field.Builder newBuilder(){ return null; }
|
||||
public static UnknownFieldSet.Field.Builder newBuilder(UnknownFieldSet.Field p0){ return null; }
|
||||
public void writeAsMessageSetExtensionTo(int p0, CodedOutputStream p1){}
|
||||
public void writeTo(int p0, CodedOutputStream p1){}
|
||||
static public class Builder
|
||||
{
|
||||
protected Builder() {}
|
||||
public UnknownFieldSet.Field build(){ return null; }
|
||||
public UnknownFieldSet.Field.Builder addFixed32(int p0){ return null; }
|
||||
public UnknownFieldSet.Field.Builder addFixed64(long p0){ return null; }
|
||||
public UnknownFieldSet.Field.Builder addGroup(UnknownFieldSet p0){ return null; }
|
||||
public UnknownFieldSet.Field.Builder addLengthDelimited(ByteString p0){ return null; }
|
||||
public UnknownFieldSet.Field.Builder addVarint(long p0){ return null; }
|
||||
public UnknownFieldSet.Field.Builder clear(){ return null; }
|
||||
public UnknownFieldSet.Field.Builder mergeFrom(UnknownFieldSet.Field p0){ return null; }
|
||||
}
|
||||
}
|
||||
static public class Parser extends AbstractParser<UnknownFieldSet>
|
||||
{
|
||||
public Parser(){}
|
||||
public UnknownFieldSet parsePartialFrom(CodedInputStream p0, ExtensionRegistryLite p1){ return null; }
|
||||
}
|
||||
}
|
||||
29
java/ql/test/stubs/apache-hive/com/google/protobuf/WireFormat.java
generated
Normal file
29
java/ql/test/stubs/apache-hive/com/google/protobuf/WireFormat.java
generated
Normal file
@@ -0,0 +1,29 @@
|
||||
// Generated automatically from com.google.protobuf.WireFormat for testing purposes
|
||||
|
||||
package com.google.protobuf;
|
||||
|
||||
|
||||
public class WireFormat
|
||||
{
|
||||
protected WireFormat() {}
|
||||
public static int WIRETYPE_END_GROUP = 0;
|
||||
public static int WIRETYPE_FIXED32 = 0;
|
||||
public static int WIRETYPE_FIXED64 = 0;
|
||||
public static int WIRETYPE_LENGTH_DELIMITED = 0;
|
||||
public static int WIRETYPE_START_GROUP = 0;
|
||||
public static int WIRETYPE_VARINT = 0;
|
||||
public static int getTagFieldNumber(int p0){ return 0; }
|
||||
static public enum FieldType
|
||||
{
|
||||
BOOL, BYTES, DOUBLE, ENUM, FIXED32, FIXED64, FLOAT, GROUP, INT32, INT64, MESSAGE, SFIXED32, SFIXED64, SINT32, SINT64, STRING, UINT32, UINT64;
|
||||
private FieldType() {}
|
||||
public WireFormat.JavaType getJavaType(){ return null; }
|
||||
public boolean isPackable(){ return false; }
|
||||
public int getWireType(){ return 0; }
|
||||
}
|
||||
static public enum JavaType
|
||||
{
|
||||
BOOLEAN, BYTE_STRING, DOUBLE, ENUM, FLOAT, INT, LONG, MESSAGE, STRING;
|
||||
private JavaType() {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user