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

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