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

ShellCanMaximizePredicate

public final class ShellCanMaximizePredicate extends Object implements org.gudy.azureus2.core3.predicate.Predicable
ShellCanMaximizePredicate evaluates a shell and returns true if the shell has SWT.MAX 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.MAX) != 0);