Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SWT/Devel/EclipseSetup"

< SWT‎ | Devel
(Created page with "= About = This page lists useful Eclipse configurations for development. == Templates == <b>NativeLock:</b> Useful wrapper to insert code templates in native bindings lik...")
 
m (Templates)
 
Line 14: Line 14:
 
lock.unlock();
 
lock.unlock();
 
}
 
}
 +
</source>
 +
 +
<b>li</b> Long int: 
 +
<source lang="java">
 +
long /*int*/
 
</source>
 
</source>

Latest revision as of 12:46, 3 February 2017

About

This page lists useful Eclipse configurations for development.


Templates

NativeLock: Useful wrapper to insert code templates in native bindings like OS.java

	lock.lock();
	try {
		return _${enclosing_method} (${enclosing_method_arguments});
	} finally {
		lock.unlock();	
	}

li Long int:

	long /*int*/

Back to the top