FileDocCategorySizeDatePackage
ShellCanMinimizePredicate.javaAPI DocAzureus 3.0.3.41479Thu Feb 09 19:43:10 GMT 2006org.gudy.azureus2.ui.swt.predicate.shell

ShellCanMinimizePredicate

public final class ShellCanMinimizePredicate extends Object implements org.gudy.azureus2.core3.predicate.Predicable
ShellCanMinimizePredicate evaluates a shell and returns true if the shell has SWT.MIN set
version
1.0

Fields Summary
Constructors Summary
Methods Summary
public booleanevaluate(java.lang.Object obj)
{@inheritDoc}

        Shell sh = (Shell)obj;
        return ((sh.getStyle() & SWT.MIN) != 0);