Class Source
java.lang.Object
com.oracle.truffle.tools.dap.types.JSONBase
com.oracle.truffle.tools.dap.types.Source
A Source is a descriptor for source code. It is returned from the debug adapter as part of a
StackFrame and it is used by clients when specifying breakpoints.
-
Method Summary
Modifier and TypeMethodDescriptionstatic Sourcecreate()booleanOptional data that a debug adapter might want to loop through the client.The checksums associated with this file.getName()The short name of the source.The (optional) origin of this source: possible values 'internal module', 'inlined content from source map', etc.getPath()The path of the source to be shown in the UI.An optional hint for how to present the source in the UI.If sourceReference > 0 the contents of the source must be retrieved through the SourceRequest (even if a path is specified).An optional list of sources that are related to this source.inthashCode()setAdapterData(Object adapterData) setChecksums(List<Checksum> checksums) setPresentationHint(String presentationHint) setSourceReference(Integer sourceReference) setSources(List<Source> sources)
-
Method Details
-
getName
The short name of the source. Every source returned from the debug adapter has a name. When sending a source to the debug adapter this name is optional. -
setName
-
getPath
The path of the source to be shown in the UI. It is only used to locate and load the content of the source if no sourceReference is specified (or its value is 0). -
setPath
-
getSourceReference
If sourceReference > 0 the contents of the source must be retrieved through the SourceRequest (even if a path is specified). A sourceReference is only valid for a session, so it must not be used to persist a source. The value should be less than or equal to 2147483647 (2^31 - 1). -
setSourceReference
-
getPresentationHint
An optional hint for how to present the source in the UI. A value of 'deemphasize' can be used to indicate that the source is not available or that it is skipped on stepping. -
setPresentationHint
-
getOrigin
The (optional) origin of this source: possible values 'internal module', 'inlined content from source map', etc. -
setOrigin
-
getSources
An optional list of sources that are related to this source. These may be the source that generated this source. -
setSources
-
getAdapterData
Optional data that a debug adapter might want to loop through the client. The client should leave the data intact and persist it across sessions. The client should not interpret the data. -
setAdapterData
-
getChecksums
The checksums associated with this file. -
setChecksums
-
equals
-
hashCode
public int hashCode() -
create
-