List of usage examples for org.eclipse.jface.internal.databinding.viewers ViewerElementSet ViewerElementSet
public ViewerElementSet(IElementComparer comparer)
From source file:org.eclipse.core.tests.internal.databinding.IdentitySetTest.java
License:Open Source License
public void testConstructor_NullComparer() { try {/*from w w w . ja va 2 s. c o m*/ new ViewerElementSet(null); fail("Constructor should throw exception when null comparer passed in"); } catch (RuntimeException expected) { } }
From source file:org.eclipse.core.tests.internal.databinding.IdentitySetTest.java
License:Open Source License
public void testConstructorWithCollection_NullCollection() { try {//from ww w . j a va2 s . c o m new ViewerElementSet(null); fail("Constructor should throw exception when null collection passed in"); } catch (RuntimeException expected) { } }