Package sass.embedded_protocol
Interface EmbeddedSass.InboundMessage.CompileRequest.ImporterOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.InboundMessage.CompileRequest.Importer
,EmbeddedSass.InboundMessage.CompileRequest.Importer.Builder
- Enclosing class:
- EmbeddedSass.InboundMessage.CompileRequest
public static interface EmbeddedSass.InboundMessage.CompileRequest.ImporterOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFileImporterId()
A unique ID for a special kind of user-defined importer that tells the compiler where to look for files on the physical filesystem, but leaves the details of resolving partials and extensions and loading the file from disk up to the compiler itself.EmbeddedSass.InboundMessage.CompileRequest.Importer.ImporterCase
getImporterCase()
int
getImporterId()
A unique ID for a user-defined importer.String
getPath()
A built-in importer that loads Sass files within the given directory on disk.ByteString
getPathBytes()
A built-in importer that loads Sass files within the given directory on disk.boolean
hasFileImporterId()
A unique ID for a special kind of user-defined importer that tells the compiler where to look for files on the physical filesystem, but leaves the details of resolving partials and extensions and loading the file from disk up to the compiler itself.boolean
hasImporterId()
A unique ID for a user-defined importer.boolean
hasPath()
A built-in importer that loads Sass files within the given directory on disk.-
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
-
hasPath
boolean hasPath()
A built-in importer that loads Sass files within the given directory on disk.
string path = 1;
- Returns:
- Whether the path field is set.
-
getPath
String getPath()
A built-in importer that loads Sass files within the given directory on disk.
string path = 1;
- Returns:
- The path.
-
getPathBytes
ByteString getPathBytes()
A built-in importer that loads Sass files within the given directory on disk.
string path = 1;
- Returns:
- The bytes for path.
-
hasImporterId
boolean hasImporterId()
A unique ID for a user-defined importer. This ID will be included in outbound `CanonicalizeRequest` and `ImportRequest` messages to indicate which importer is being called. The host is responsible for generating this ID and ensuring that it's unique across all importers registered for this compilation.
uint32 importer_id = 2;
- Returns:
- Whether the importerId field is set.
-
getImporterId
int getImporterId()
A unique ID for a user-defined importer. This ID will be included in outbound `CanonicalizeRequest` and `ImportRequest` messages to indicate which importer is being called. The host is responsible for generating this ID and ensuring that it's unique across all importers registered for this compilation.
uint32 importer_id = 2;
- Returns:
- The importerId.
-
hasFileImporterId
boolean hasFileImporterId()
A unique ID for a special kind of user-defined importer that tells the compiler where to look for files on the physical filesystem, but leaves the details of resolving partials and extensions and loading the file from disk up to the compiler itself. This ID will be included in outbound `FileImportRequest` messages to indicate which importer is being called. The host is responsible for generating this ID and ensuring that it's unique across all importers registered for this compilation.
uint32 file_importer_id = 3;
- Returns:
- Whether the fileImporterId field is set.
-
getFileImporterId
int getFileImporterId()
A unique ID for a special kind of user-defined importer that tells the compiler where to look for files on the physical filesystem, but leaves the details of resolving partials and extensions and loading the file from disk up to the compiler itself. This ID will be included in outbound `FileImportRequest` messages to indicate which importer is being called. The host is responsible for generating this ID and ensuring that it's unique across all importers registered for this compilation.
uint32 file_importer_id = 3;
- Returns:
- The fileImporterId.
-
getImporterCase
EmbeddedSass.InboundMessage.CompileRequest.Importer.ImporterCase getImporterCase()
-
-