-3

Like XMLSerializer we have LSSerializer in Java. What does LS indicate in it?

Shruthi HM
  • 55
  • 1
  • 2
  • 6

2 Answers2

3

Looking at org.w3c.dom.ls package you can find a class DOMImplementationLS with description: contains the factory methods for creating Load and Save objects.

It can be safely assumed that LS stands from Load and Save.
You can also see that in whole dom package and its subpackages they start most of their classes with subpackage name as a prefix to class name, that's a matter of style only.

zubergu
  • 3,646
  • 3
  • 25
  • 38