a foolish question

in Help Center
$ slice2freezej -I$(ICE_HOME)/slice --dict \
Filesystem.IdentityNodeMap,Ice::Identity,\
Filesystem::PersistentNode\
Filesystem.ice $(ICE_HOME)/slice/Ice/Identity.ice
this command was in manual
I don't know the means of these parameters in this command ,pls tell me,thanks
Filesystem.IdentityNodeMap,Ice::Identity,\
Filesystem::PersistentNode\
Filesystem.ice $(ICE_HOME)/slice/Ice/Identity.ice
this command was in manual
I don't know the means of these parameters in this command ,pls tell me,thanks
0
Comments
oh,but what's the relation of "IdentityNodeMap" and "Filesystem" in "Filesystem.IdentityNodeMap"? Is Filesystem a package?
and what's the relation of "PersistentNode" and "Filesystem" in "Filesystem::PersistentNode"?
Could you give me a example about the generation of Struct1Struct2Map.java in example "bench" of Freeze?
I failed although I tried a lot of times.
Thank you very much!!
- Create a dictionary called IdentityNodeMap inside the Filesystem package.
- The dictionary maps from the Slice type Ice::Identity to the Slice type Filesystem::PersistentNode. "Ice" is a Slice module containing the definition of "Identity", and "Filesystem" is a Slice module containing the definition of "PersistentNode".
- The relevant definitions of the Slice types involved can be found in the source files Filesystem.ice and $(ICE_HOME)/slice/Ice/Identity.ice.
BTW -- you can find this explanation in the Freeze chapter of the documentation.
Cheers,
Michi.