Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 2e9c43658e374d290a2de15d25134ac8 > files > 631

db4o-doc-8.0-1.fc15.i686.rpm

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:MadCap="http://www.madcapsoftware.com/Schemas/MadCap.xsd" MadCap:lastBlockDepth="2" MadCap:lastHeight="120" MadCap:lastWidth="624" MadCap:disableMasterStylesheet="true" MadCap:tocPath="Community|Working With Source Code|Sharpen" MadCap:InPreviewMode="false" MadCap:RuntimeFileType="Topic" MadCap:TargetType="WebHelp" MadCap:PathToHelpSystem="../../../../" MadCap:HelpSystemFileName="index.xml" MadCap:SearchType="Stem">
    <head><title>Doing a Sharpen Conversion</title>
        <script type="text/javascript">/* <![CDATA[ */
window.onload = function(){
	var pathToFlash = $('html').attr('MadCap:PathToHelpSystem') + 'Content/Resources/Code/ZeroClipboard.swf';
	ZeroClipboard.setMoviePath(pathToFlash);
			
	function bindToClipBord(element,content){
		var clip = new ZeroClipboard.Client();
		clip.setText(content);
		clip.glue(element);
	};
		
	if(location.protocol==='file:'){
		$('.copylink-marker').remove();
	} else{
			$('.copylink-marker').each(function(){
				var text = $(this).parent().parent().children('.prettyprint').html();
				$(this).hover(function(){
					bindToClipBord(this,text);
				},
				function(){});
			});	
	}		
	prettyPrint();	
};
                /* ]]> */</script>
        <link href="../../../SkinSupport/MadCap.css" rel="stylesheet" />
        <link href="../../../Resources/Stylesheets/OnlineStyle.css" rel="stylesheet" />
        <script src="../../../SkinSupport/MadCapAll.js">
        </script>
        <script src="../../../Resources/Code/prettify.js">
        </script>
        <script src="../../../Resources/Code/lang-vb.js">
        </script>
        <script src="../../../Resources/Code/jquery.min.js">
        </script>
        <script src="../../../Resources/Code/ZeroClipboard.js">
        </script>
    </head>
    <body>
        <p class="MCWebHelpFramesetLink" style="display: none;"><a href="../../../../index_CSH.html#community/working_with_source/sharpen/example_conversion.htm" style="">Open topic with navigation</a>
        </p>
        <div class="MCBreadcrumbsBox"><span class="MCBreadcrumbsPrefix">You are here: </span><a class="MCBreadcrumbsLink" href="../../../community.htm">Community</a><span class="MCBreadcrumbsDivider"> &gt; </span><a class="MCBreadcrumbsLink" href="../../working_with_source_code.htm">Working With Source Code</a><span class="MCBreadcrumbsDivider"> &gt; </span><a class="MCBreadcrumbsLink" href="../sharpen.htm">Sharpen</a><span class="MCBreadcrumbsDivider"> &gt; </span><span class="MCBreadcrumbs">Doing a Sharpen Conversion</span>
        </div>
        <p>
            <script type="text/javascript">/*<![CDATA[*/document.write('<a href="' + location.href +'">');
				document.write("Direct Link");
			document.write('</a>');/*]]>*/</script>
        </p>
        <p>
        </p>
        <h1>Doing a Sharpen Conversion</h1>
        <p>Ensure that you've installed sharpen to an existing eclipse installation as explained <a href="how_to_setup_sharpen.htm">here</a>. </p>
        <p>Use Ant scripts to run <span class="MCTextPopup"><a href="javascript:void(0);" class="MCTextPopupSpot" onclick="FMCTextPopup( event, this ); return false;">Sharpen<img style="border: none;margin-left: 5px;" src="../../../SkinSupport/ExpandingClosed.gif" MadCap:altsrc="../../../SkinSupport/ExpandingOpen.gif" class="MCExpandingIcon" onload="if ( typeof( FMCPreloadImage ) == 'function' ) { FMCPreloadImage( '../../../SkinSupport/ExpandingOpen.gif' ); }" /></a><span class="MCTextPopupBody" style="display: none; ">Sharpen is a tool to translate Java source code to C# source code</span></span> and translate your Java code to C#. The best way for this is to define an Ant macro which you then can reuse. This task takes two arguments. The first argument is the path to a valid Eclipse workspace which contains the project to translate. The second parameter is the project in the workspace which you want to translate.</p>
        <div class="codesnippet" MadCap:conditions="">
            <pre class="prettyprint" xml:space="preserve">&lt;macrodef name="sharpen"&gt;
    &lt;attribute name="workspace"/&gt;
    &lt;attribute name="resource"/&gt;

    &lt;element name="args" optional="yes"/&gt;

    &lt;sequential&gt;
        &lt;java taskname="sharpen"
              fork="true"
              classname="org.eclipse.core.launcher.Main"
              failonerror="true" timeout="1800000"&gt;

            &lt;classpath&gt;
                &lt;fileset dir="${eclipse.home}/plugins"&gt;
                    &lt;include name="org.eclipse.equinox.launcher_*.jar"/&gt;
                &lt;/fileset&gt;
            &lt;/classpath&gt;

            &lt;arg value="-clean"/&gt;
            &lt;arg value="-data"/&gt;
            &lt;arg file="@{workspace}"/&gt;
            &lt;arg value="-application"/&gt;
            &lt;arg value="sharpen.core.application"/&gt;
            &lt;arg value="@{resource}"/&gt;
            &lt;args/&gt;
        &lt;/java&gt;
    &lt;/sequential&gt;
&lt;/macrodef&gt;</pre>
            <div class="codesnippet-meta">sharpen-install.xml: The sharpen task
			<div class="codedownload"><a href="../../../CodeExamples/sharpen/Example-db4odoc-sharpen-.zip" class="codedownload" MadCap:conditions="Primary.Online">Download Code</a></div><div class="codedownload copylink-marker" MadCap:conditions="Primary.Online"><a href="#copy">Copy Code</a></div></div>
        </div>
        <p>Now you can use this task to sharpen your project. First ensure that your project is in a valid Eclipse workspace. Then you specify the workspace and the sources of the project:</p>
        <div class="codesnippet" MadCap:conditions="">
            <pre class="prettyprint" xml:space="preserve">&lt;target name="sharpen"&gt;
    &lt;sharpen
        workspace="C:\temp\sharpenExamples\"
        resource="example/src"&gt;
        &lt;args&gt;
            &lt;arg value="@sharpen-config"/&gt;
        &lt;/args&gt;
        &lt;/sharpen&gt;
&lt;/target&gt;</pre>
            <div class="codesnippet-meta">sharpen-example.xml: Sharpen a example project
			<div class="codedownload"><a href="../../../CodeExamples/sharpen/Example-db4odoc-sharpen-.zip" class="codedownload" MadCap:conditions="Primary.Online">Download Code</a></div><div class="codedownload copylink-marker" MadCap:conditions="Primary.Online"><a href="#copy">Copy Code</a></div></div>
        </div>
        <p>Additionally you can pass the sharpen configuration as a file-name. When you add a '@' in front of the file-name sharpen will read that file and use all configuration flags of that. For example:</p>
        <pre class="prettyprint">-pascalCase+
-nativeTypeSystem
-nativeInterfaces</pre>
        <p>You can find a list of all Sharpen <a href="sharpen_command-line_arguments.htm">configuration flags here</a> and a list of all <a href="sharpen_annotations.htm">Sharpen annotations here</a>. </p>
        <p MadCap:conditions="Primary.Online">The example Ant scripts can be downloaded <a href="../../../CodeExamples/sharpen/Example-db4odoc-sharpen-.zip">here</a>.</p>
        <script type="text/javascript" src="../../../SkinSupport/MadCapBodyEnd.js">
        </script>
    </body>
</html>