Elements. Build native projects for any modern development platform, using the language(s) of your choice. Oxygene (Object Pascal), C#, Swift, Java, Go. | RemObjects Software

SharedUI.Shared

Language: Iodine, Platform: All, Category: SharedUI
https://github.com/remobjects/ElementsSamples/tree/master/Iodine/All/SharedUI/SharedUI.Shared

$(MSBuildThisFileDirectory)MainWindowController.Cocoa.java

package SharedUI.Shared;

#if TOFFEE

@IBObject
public __partial class MainWindowController extends NSWindowController
{
	public MainWindowController()
	{
		super("MainWindow");
		setup();
	}

	@Override
	public void windowDidLoad()
	{
		super.windowDidLoad();
		//  Implement this method to handle any initialization after your window controller's
		//  window has been loaded from its nib file.
	}
}

#endif