Stay organized with collections
Save and categorize content based on your preferences.
Source
interface Source
Known Direct Subclasses
DOMSource |
Acts as a holder for a transformation Source tree in the form of a Document Object Model (DOM) tree.
|
SAXSource |
Acts as an holder for SAX-style Source.
|
StreamSource |
Acts as an holder for a transformation Source in the form of a stream of XML markup.
|
|
An object that implements this interface contains the information needed to act as source input (XML source or transformation instructions).
Summary
Public methods |
abstract String! |
Get the system identifier that was set with setSystemId.
|
abstract Unit |
Set the system identifier for this Source.
|
Public methods
getSystemId
abstract fun getSystemId(): String!
Get the system identifier that was set with setSystemId.
Return |
String! |
The system identifier that was set with setSystemId, or null if setSystemId was not called. |
setSystemId
abstract fun setSystemId(systemId: String!): Unit
Set the system identifier for this Source.
The system identifier is optional if the source does not get its data from a URL, but it may still be useful to provide one. The application can use a system identifier, for example, to resolve relative URIs and to include in error messages and warnings.
Parameters |
systemId |
String!: The system identifier as a URL string. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# Source\n\nAdded in [API level 8](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nSource\n======\n\n```\ninterface Source\n```\n\n|---------------------------------|\n| [javax.xml.transform.Source](#) |\n\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [DOMSource](/reference/kotlin/javax/xml/transform/dom/DOMSource), [SAXSource](/reference/kotlin/javax/xml/transform/sax/SAXSource), [StreamSource](/reference/kotlin/javax/xml/transform/stream/StreamSource) |---------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------| | [DOMSource](/reference/kotlin/javax/xml/transform/dom/DOMSource) | Acts as a holder for a transformation Source tree in the form of a Document Object Model (DOM) tree. | | [SAXSource](/reference/kotlin/javax/xml/transform/sax/SAXSource) | Acts as an holder for SAX-style Source. | | [StreamSource](/reference/kotlin/javax/xml/transform/stream/StreamSource) | Acts as an holder for a transformation Source in the form of a stream of XML markup. | |\n\nAn object that implements this interface contains the information needed to act as source input (XML source or transformation instructions).\n\nSummary\n-------\n\n| Public methods ||\n|--------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| abstract [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)! | [getSystemId](#getSystemId())`()` Get the system identifier that was set with setSystemId. |\n| abstract [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) | [setSystemId](#setSystemId(kotlin.String))`(`systemId:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`)` Set the system identifier for this Source. |\n\nPublic methods\n--------------\n\n### getSystemId\n\nAdded in [API level 8](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun getSystemId(): String!\n```\n\nGet the system identifier that was set with setSystemId.\n\n| Return ||\n|-----------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|\n| [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)! | The system identifier that was set with setSystemId, or null if setSystemId was not called. |\n\n### setSystemId\n\nAdded in [API level 8](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun setSystemId(systemId: String!): Unit\n```\n\nSet the system identifier for this Source.\n\nThe system identifier is optional if the source does not get its data from a URL, but it may still be useful to provide one. The application can use a system identifier, for example, to resolve relative URIs and to include in error messages and warnings.\n\n| Parameters ||\n|------------|---------------------------------------------------------------------------------------------------------------------------|\n| `systemId` | [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!: The system identifier as a URL string. |"]]