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

SWT/Devel/EclipseSetup

< SWT‎ | Devel
Revision as of 12:45, 3 February 2017 by Unnamed Poltroon (Talk) (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...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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();	
	}

Back to the top