Package org.pdtextensions.semanticanalysis.validation.factory

Source Code of org.pdtextensions.semanticanalysis.validation.factory.UsageValidatorFactory

/*******************************************************************************
* Copyright (c) 2013 The PDT Extension Group (https://github.com/pdt-eg)
* 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
******************************************************************************/
package org.pdtextensions.semanticanalysis.validation.factory;

import org.eclipse.dltk.core.IScriptProject;
import org.pdtextensions.semanticanalysis.validation.IValidatorFactory;
import org.pdtextensions.semanticanalysis.validation.IValidatorParticipant;
import org.pdtextensions.semanticanalysis.validation.validator.UsageValidator;

/**
* @author Dawid zulus Pakula <zulus@w3des.net>
*/
public class UsageValidatorFactory implements IValidatorFactory {

  @Override
  public IValidatorParticipant getValidatorParticipant(IScriptProject scriptProject) {
    return new UsageValidator();
  }

}
TOP

Related Classes of org.pdtextensions.semanticanalysis.validation.factory.UsageValidatorFactory

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.