Una rappresentazione di un nodo XML EntityReference
.
Metodi
Metodo | Tipo restituito | Breve descrizione |
---|---|---|
detach() | Content | Stacca il nodo dal nodo Element padre. |
getName() | String | Restituisce il nome del nodo EntityReference . |
getParentElement() | Element | Restituisce il nodo principale Element del nodo. |
getPublicId() | String | Restituisce l'ID pubblico del nodo EntityReference . |
getSystemId() | String | Recupera l'ID sistema del nodo EntityReference . |
getValue() | String | Restituisce il valore di testo di tutti i nodi che sono figli diretti o indiretti del nodo, nell'ordine in cui appaiono nel documento. |
setName(name) | EntityRef | Imposta il nome del nodo EntityReference . |
setPublicId(id) | EntityRef | Imposta l'ID pubblico del nodo EntityReference . |
setSystemId(id) | EntityRef | Imposta l'ID sistema del nodo EntityReference . |
Documentazione dettagliata
detach()
getName()
Restituisce il nome del nodo EntityReference
.
Ritorni
String
: il nome del nodo EntityReference
getParentElement()
getPublicId()
Restituisce l'ID pubblico del nodo EntityReference
. Se il nodo non ha un ID pubblico,
questo metodo restituisce null
.
Ritorni
String
: l'ID pubblico del nodo EntityReference
oppure null
se non è presente
getSystemId()
Recupera l'ID sistema del nodo EntityReference
. Se il nodo non ha un ID di sistema,
questo metodo restituisce null
.
Ritorni
String
: l'ID sistema del nodo EntityReference
oppure null
se non è presente
getValue()
Restituisce il valore di testo di tutti i nodi che sono figli diretti o indiretti del nodo, nell'ordine in cui appaiono nel documento.
Ritorni
String
: il valore di testo di tutti i nodi che sono figli diretti o indiretti del nodo
setName(name)
Imposta il nome del nodo EntityReference
.
Parametri
Nome | Tipo | Descrizione |
---|---|---|
name | String | il nome da impostare |
Ritorni
EntityRef
: il nodo EntityReference
, per il concatenamento
setPublicId(id)
Imposta l'ID pubblico del nodo EntityReference
.
Parametri
Nome | Tipo | Descrizione |
---|---|---|
id | String | l'ID pubblico da impostare |
Ritorni
EntityRef
: il nodo EntityReference
, per il concatenamento
setSystemId(id)
Imposta l'ID sistema del nodo EntityReference
.
Parametri
Nome | Tipo | Descrizione |
---|---|---|
id | String | l'ID sistema da impostare |
Ritorni
EntityRef
: il nodo EntityReference
, per il concatenamento