Package com.google.protobuf.gen
Interface DescriptorProtos.GeneratedCodeInfo.AnnotationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DescriptorProtos.GeneratedCodeInfo.Annotation,DescriptorProtos.GeneratedCodeInfo.Annotation.Builder
- Enclosing class:
- DescriptorProtos.GeneratedCodeInfo
public static interface DescriptorProtos.GeneratedCodeInfo.AnnotationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBegin()Identifies the starting offset in bytes in the generated code that relates to the identified object.intgetEnd()Identifies the ending offset in bytes in the generated code that relates to the identified offset.intgetPath(int index)Identifies the element in the original source .proto file.intgetPathCount()Identifies the element in the original source .proto file.List<Integer>getPathList()Identifies the element in the original source .proto file.StringgetSourceFile()Identifies the filesystem path to the original source .proto.com.google.protobuf.ByteStringgetSourceFileBytes()Identifies the filesystem path to the original source .proto.booleanhasBegin()Identifies the starting offset in bytes in the generated code that relates to the identified object.booleanhasEnd()Identifies the ending offset in bytes in the generated code that relates to the identified offset.booleanhasSourceFile()Identifies the filesystem path to the original source .proto.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPathList
List<Integer> getPathList()
Identifies the element in the original source .proto file. This field is formatted the same as SourceCodeInfo.Location.path.
repeated int32 path = 1 [packed = true];
-
getPathCount
int getPathCount()
Identifies the element in the original source .proto file. This field is formatted the same as SourceCodeInfo.Location.path.
repeated int32 path = 1 [packed = true];
-
getPath
int getPath(int index)
Identifies the element in the original source .proto file. This field is formatted the same as SourceCodeInfo.Location.path.
repeated int32 path = 1 [packed = true];
-
hasSourceFile
boolean hasSourceFile()
Identifies the filesystem path to the original source .proto.
optional string source_file = 2;
-
getSourceFile
String getSourceFile()
Identifies the filesystem path to the original source .proto.
optional string source_file = 2;
-
getSourceFileBytes
com.google.protobuf.ByteString getSourceFileBytes()
Identifies the filesystem path to the original source .proto.
optional string source_file = 2;
-
hasBegin
boolean hasBegin()
Identifies the starting offset in bytes in the generated code that relates to the identified object.
optional int32 begin = 3;
-
getBegin
int getBegin()
Identifies the starting offset in bytes in the generated code that relates to the identified object.
optional int32 begin = 3;
-
hasEnd
boolean hasEnd()
Identifies the ending offset in bytes in the generated code that relates to the identified offset. The end offset should be one past the last relevant byte (so the length of the text = end - begin).
optional int32 end = 4;
-
getEnd
int getEnd()
Identifies the ending offset in bytes in the generated code that relates to the identified offset. The end offset should be one past the last relevant byte (so the length of the text = end - begin).
optional int32 end = 4;
-
-