I was reading code of a java project where I found a class name like "UserSansXml". This class is dealing with user objects. I wanted to know the meaning of "sans".
- 3FWIW, "sans" is the french translation of "without".Florian Margaine– Florian Margaine2012-11-14 07:12:20 +00:00Commented Nov 14, 2012 at 7:12
- 1@FlorianMargaine it is also a perfectly good English word with the same meaning.jk.– jk.2012-11-14 09:17:16 +00:00Commented Nov 14, 2012 at 9:17
- @jk. thanks to the Normans conquering England in 1066Michael Borgwardt– Michael Borgwardt2012-11-14 09:44:39 +00:00Commented Nov 14, 2012 at 9:44
Add a comment |
1 Answer
'Sans' means 'without'. Think of typefaces like 'Sans-Serif'.
Without context, it's hard to speculate what 'UserSansXml' means.
- 10User without Xml, obviously :)Saturn– Saturn2012-11-14 04:20:52 +00:00Commented Nov 14, 2012 at 4:20
- That helps. Reading the code, I figured out, User data comes from xml and later gets stored in db. UserSansXml class deals with the user objects found in xml and the methods in this class has public methods to access users without bothering xml tags.Kinjal– Kinjal2012-11-14 04:34:02 +00:00Commented Nov 14, 2012 at 4:34