org.eclipse.swtbot.eclipse.finder.matchers
Class WithPartId<T extends IWorkbenchPartReference>

java.lang.Object
  extended by org.hamcrest.BaseMatcher<T>
      extended by org.eclipse.swtbot.swt.finder.matchers.AbstractMatcher<T>
          extended by org.eclipse.swtbot.eclipse.finder.matchers.WithPartId<T>
All Implemented Interfaces:
Matcher<T>, SelfDescribing

public class WithPartId<T extends IWorkbenchPartReference>
extends AbstractMatcher<T>

Since:
2.0
Version:
$Id$
Author:
Ralf Ebert www.ralfebert.de (bug 271630)

Field Summary
 
Fields inherited from class org.eclipse.swtbot.swt.finder.matchers.AbstractMatcher
log
 
Method Summary
 void describeTo(Description description)
           
 boolean doMatch(Object item)
          Subclasses must override, this is the actual method that does the matching
static
<T extends IWorkbenchPartReference>
Matcher<T>
withPartId(Matcher<String> idMatcher)
          Matches a workbench part (view/editor) with the specified id.
static
<T extends IWorkbenchPartReference>
Matcher<T>
withPartId(String id)
          Matches a workbench part (view/editor) with the specified id.
 
Methods inherited from class org.eclipse.swtbot.swt.finder.matchers.AbstractMatcher
matches
 
Methods inherited from class org.hamcrest.BaseMatcher
_dont_implement_Matcher___instead_extend_BaseMatcher_, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

doMatch

public boolean doMatch(Object item)
Description copied from class: AbstractMatcher
Subclasses must override, this is the actual method that does the matching

Specified by:
doMatch in class AbstractMatcher<T extends IWorkbenchPartReference>
Parameters:
item - the item to match.
Returns:
true if the item matches, false otherwise.

describeTo

public void describeTo(Description description)

withPartId

public static <T extends IWorkbenchPartReference> Matcher<T> withPartId(String id)
Matches a workbench part (view/editor) with the specified id.

Parameters:
id - the id of the part.
Returns:
a matcher.
Since:
2.0

withPartId

public static <T extends IWorkbenchPartReference> Matcher<T> withPartId(Matcher<String> idMatcher)
Matches a workbench part (view/editor) with the specified id.

Parameters:
idMatcher - the part id matcher.
Returns:
a matcher.
Since:
2.0