|
Deprecated Methods |
com.nexaweb.xml.DocumentProvider.addDatasetListener(DatasetListener)
Use the
DocumentRegistry.addDocumentListener(DocumentListener)
method instead. |
com.nexaweb.xml.DocumentProvider.findDataset(String)
Use the DocumentRegistry.findDocument(String)
method instead. |
com.nexaweb.session.NxSession.getDocumentProvider()
The DocumentProvider is a deprecated interface,
use the DocumentRegistry interface
instead, it may be obtained from the NxSession.getDocumentRegistry()
method. |
com.nexaweb.xml.DocumentProvider.getLocalDatasetNames()
Use the
DocumentRegistry.getUserDocumentNames(DocumentLocation)
method with DocumentLocation.LOCAL as the argument instead. |
com.nexaweb.xml.DocumentProvider.getSynchronizedClientAndServerDatasetNames()
Use the
DocumentRegistry.getUserDocumentNames(DocumentLocation)
method with DocumentLocation.CLIENT_AND_SERVER_SHARED as
the argument instead. |
com.nexaweb.xml.DocumentProvider.getUiDocument()
Use DocumentRegistry.findDocument(String) with an
argument of DocumentRegistry.UI_DOCUMENT_NAME. |
com.nexaweb.xml.events.DatasetListener.onDatasetRegistered(DatasetEvent)
Implement
DocumentListener.onDocumentRegistered(DocumentEvent)
method instead. |
com.nexaweb.xml.events.DatasetListener.onDatasetUnregistered(DatasetEvent)
Implement
DocumentListener.onDocumentUnregistered(DocumentEvent)
method instead. |
com.nexaweb.xml.DocumentProvider.registerDatasetForClient(String, Document)
Use the
DocumentRegistry.registerDocument(DocumentLocation, String, Document)
method with DocumentLocation.CLIENT as the first argument
instead. |
com.nexaweb.xml.DocumentProvider.registerDatasetForClientAndServer(String, Document)
Use the
DocumentRegistry.registerDocument(DocumentLocation, String, Document)
method with DocumentLocation.CLIENT_AND_SERVER_SHARED as the first
argument instead. |
com.nexaweb.xml.DocumentProvider.registerDatasetForServer(String, Document)
Use the
DocumentRegistry.registerDocument(DocumentLocation, String, Document)
method with DocumentLocation.SERVER as the first argument
instead. |
com.nexaweb.xml.DocumentProvider.removeDatasetListener(DatasetListener)
Use the
DocumentRegistry.removeDocumentListener(DocumentListener)
method instead. |
com.nexaweb.xml.DocumentProvider.unregisterDataset(String)
Use the DocumentRegistry.unregisterDocument(String)
method instead. |