Eclipse code template $Revision$ variable



I would like to know if the Revision variable gets replaced by while
checking in SVN code.
Also typecomment does not get replaced when referenced to. If i enable
"automatically add comments" in Windows -> Preferences -> Code Style,
then it gets placed.
My code template snippet is below, all the other dynamic values get
replaced except Revision and typecomment:

</template><template
id="org.eclipse.jdt.ui.text.codetemplates.typecomment"
name="typecomment" description="Comment for created types"
context="typecomment_context" enabled="true" deleted="false">/**
* TODO:add description of class here
*
* @author ${user}
*/</template>
</template><template id="org.eclipse.jdt.ui.text.codetemplates.newtype"
name="newtype" description="Newly created files"
context="newtype_context" enabled="true" deleted="false">/* File
Name : ${file_name}
* Creation Date : ${date}
*
* Revision : $$Revision$$
*/
${package_declaration}

${typecomment}
${type_declaration}
</template>

Thanks in advance for all the help.
kitty

.