Skip to content
Antonio Vieiro edited this page Jan 25, 2018 · 1 revision

DevFaqFindInstance

I have a .instance file. How do I get an actual object instance?

Using InstanceCookie (note that if you have an entire folder of .instance files, there’s a more efficient way to get all of them):

DataObject dob = DataObject.find (theDotInstanceFileObject);
InstanceCookie ck = dob.getLookup().lookup(InstanceCookie.class);
MyObject obj = (MyObject) ck.instanceCreate();

(you can and should call ck.instanceClass() to ensure the type cast is correct ahead of time)

Alternative:

T obj=FileUtil.getConfigObject("Actions/Window/org-foo-B.instance", T.class)

//for example:
Action action=FileUtil.getConfigObject("Actions/Window/org-netbeans-core-windows-actions-ResetWindowsAction.instance", Action.class)

Apache Migration Information

The content in this page was kindly donated by Oracle Corp. to the Apache Software Foundation.

This page was exported from http://wiki.netbeans.org/DevFaqFindInstance , that was last modified by NetBeans user Markiewb on 2013-03-31T16:20:03Z.

NOTE: This document was automatically converted to the AsciiDoc format on 2018-01-26, and needs to be reviewed.

Clone this wiki locally