Package org.eclipse.core.internal.expressions

Source Code of org.eclipse.core.internal.expressions.EnablementExpression

/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.internal.expressions;

import org.w3c.dom.Element;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;

import org.eclipse.core.expressions.EvaluationResult;
import org.eclipse.core.expressions.IEvaluationContext;

public class EnablementExpression extends CompositeExpression {

  public EnablementExpression(IConfigurationElement configElement) {
    // config element not used yet.
  }

  public EnablementExpression(Element element) {
    // element not used yet.
  }

  public boolean equals(final Object object) {
    if (!(object instanceof EnablementExpression))
      return false;
   
    final EnablementExpression that= (EnablementExpression)object;
    return equals(this.fExpressions, that.fExpressions);
  }
 
  public EvaluationResult evaluate(IEvaluationContext context) throws CoreException {
    long start= 0;
    if (Expressions.TRACING)
      start= System.currentTimeMillis();
    EvaluationResult result= evaluateAnd(context);
    if (Expressions.TRACING) {
      System.out.println("[Enablement Expression] - evaluation time: " + //$NON-NLS-1$
        (System.currentTimeMillis() - start) + " ms."); //$NON-NLS-1$
    }
    return result;
  }
}
TOP

Related Classes of org.eclipse.core.internal.expressions.EnablementExpression

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.