Java Code Examples for java.beans.PropertyEditorManager#getEditorSearchPath()
The following examples show how to use
java.beans.PropertyEditorManager#getEditorSearchPath() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PELookupTest.java From netbeans with Apache License 2.0 | 6 votes |
public void testPackageUnregistering() { MockLookup.setInstances(new NodesRegistrationSupport.PEPackageRegistration("test1.pkg")); NodeOp.registerPropertyEditors(); MockLookup.setInstances(new NodesRegistrationSupport.PEPackageRegistration("test2.pkg")); String[] editorSearchPath = PropertyEditorManager.getEditorSearchPath(); int count = 0; for (int i = 0; i < editorSearchPath.length; i++) { assertNotSame("test1.pkg", editorSearchPath[i]); if ("test2.pkg".equals(editorSearchPath[i])) { count++; } } assertEquals(1, count); }
Example 2
Source File: Test4968709.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 3
Source File: Test4968709.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 4
Source File: Test4968709.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 5
Source File: Test4968709.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 6
Source File: ExtTestCase.java From netbeans with Apache License 2.0 | 5 votes |
protected static final void installCorePropertyEditors() { String[] syspesp = PropertyEditorManager.getEditorSearchPath(); String[] nbpesp = new String[] { "org.netbeans.beaninfo.editors", // NOI18N "org.openide.explorer.propertysheet.editors", // NOI18N }; String[] allpesp = new String[syspesp.length + nbpesp.length]; System.arraycopy(nbpesp, 0, allpesp, 0, nbpesp.length); System.arraycopy(syspesp, 0, allpesp, nbpesp.length, syspesp.length); PropertyEditorManager.setEditorSearchPath(allpesp); }
Example 7
Source File: PEAnnotationProcessorTest.java From netbeans with Apache License 2.0 | 5 votes |
public void testDuplicateRegistration() { NodeOp.registerPropertyEditors(); NodeOp.registerPropertyEditors(); int count = 0; String[] editorSearchPath = PropertyEditorManager.getEditorSearchPath(); for (int i = 0; i < editorSearchPath.length; i++) { if ("org.netbeans.modules.openide.nodes".equals(editorSearchPath[i])) { count++; } } assertFalse("Package path is registered multiple times", count > 1); assertFalse("Package path is not registered", count == 0); }
Example 8
Source File: Test4968709.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 9
Source File: Test4968709.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 10
Source File: Test4968709.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 11
Source File: Test4968709.java From hottub with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 12
Source File: Test4968709.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 13
Source File: Test4968709.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 14
Source File: Test4968709.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 15
Source File: Test4968709.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }
Example 16
Source File: Test4968709.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) { String[] oldPath = PropertyEditorManager.getEditorSearchPath(); String[] newPath = {"aaa.bbb", "aaa.ccc",}; PropertyEditorManager.setEditorSearchPath(newPath); if (null != PropertyEditorManager.findEditor(Test4968709.class)) throw new Error("found unexpected editor"); PropertyEditorManager.setEditorSearchPath(oldPath); if (null == PropertyEditorManager.findEditor(Double.TYPE)) throw new Error("expected editor is not found"); }