Package sass.embedded_protocol
Interface EmbeddedSass.SourceSpan.SourceLocationOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.SourceSpan.SourceLocation
,EmbeddedSass.SourceSpan.SourceLocation.Builder
- Enclosing class:
- EmbeddedSass.SourceSpan
public static interface EmbeddedSass.SourceSpan.SourceLocationOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getColumn()
The 0-based column number of this location within its line.int
getLine()
The 0-based line number of this location within the source file.int
getOffset()
The 0-based offset of this location within the source file.-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOffset
int getOffset()
The 0-based offset of this location within the source file. Mandatory.
uint32 offset = 1;
- Returns:
- The offset.
-
getLine
int getLine()
The 0-based line number of this location within the source file. Mandatory.
uint32 line = 2;
- Returns:
- The line.
-
getColumn
int getColumn()
The 0-based column number of this location within its line. Mandatory.
uint32 column = 3;
- Returns:
- The column.
-
-