Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.wsdl.validation/src/wsdlvalidateui/org/eclipse/wst/wsdl/validation/internal/ui/eclipse/Validator.java')
-rw-r--r--bundles/org.eclipse.wst.wsdl.validation/src/wsdlvalidateui/org/eclipse/wst/wsdl/validation/internal/ui/eclipse/Validator.java180
1 files changed, 0 insertions, 180 deletions
diff --git a/bundles/org.eclipse.wst.wsdl.validation/src/wsdlvalidateui/org/eclipse/wst/wsdl/validation/internal/ui/eclipse/Validator.java b/bundles/org.eclipse.wst.wsdl.validation/src/wsdlvalidateui/org/eclipse/wst/wsdl/validation/internal/ui/eclipse/Validator.java
deleted file mode 100644
index b1a750b37..000000000
--- a/bundles/org.eclipse.wst.wsdl.validation/src/wsdlvalidateui/org/eclipse/wst/wsdl/validation/internal/ui/eclipse/Validator.java
+++ /dev/null
@@ -1,180 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2001, 2004 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.wst.wsdl.validation.internal.ui.eclipse;
-
-import java.io.InputStream;
-import java.util.Collection;
-import java.util.Iterator;
-import java.util.List;
-
-import org.eclipse.core.resources.IFile;
-import org.eclipse.wst.validation.internal.core.ValidationException;
-import org.eclipse.wst.validation.internal.operations.IRuleGroup;
-import org.eclipse.wst.validation.internal.operations.ValidatorManager;
-import org.eclipse.wst.validation.internal.provisional.core.IReporter;
-import org.eclipse.wst.validation.internal.provisional.core.IValidationContext;
-import org.eclipse.wst.validation.internal.provisional.core.IValidator;
-import org.eclipse.wst.xml.core.internal.validation.core.Helper;
-
-
-/**
- * A validator to plug the WSDL validator into the validation framework.
- */
-public class Validator implements IValidator
-{
-
- /**
- * Validate the given IFile.
- *
- * @param file
- * The file to validate.
- */
-// public void validate(IFile file)
-// {
-// ValidateWSDLAction validateAction = new ValidateWSDLAction(file, false);
-// validateAction.setValidator(this);
-// validateAction.run();
-// }
-
- protected void validate(IFile file, InputStream inputStream, IReporter reporter)
- {
- ValidateWSDLAction validateAction = new ValidateWSDLAction(file, false);
- validateAction.setValidator(this);
- validateAction.setReporter(reporter);
- validateAction.setInputStream(inputStream);
- validateAction.run();
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.wst.validation.core.IValidator#validate(org.eclipse.wst.validation.core.IHelper, org.eclipse.wst.validation.core.IReporter, org.eclipse.wst.validation.core.IFileDelta[])
- */
- public void validate(IValidationContext helper, IReporter reporter) throws ValidationException
- {
- String[] changedFiles = helper.getURIs();
- if (changedFiles != null && changedFiles.length > 0)
- {
- InputStream streamToValidate = (InputStream) helper.loadModel("inputStream");
- if (streamToValidate != null)
- {
- String fileName = changedFiles[0];
- Object[] parms = { fileName };
- IFile file = (IFile) helper.loadModel(Helper.GET_FILE, parms);
-
- validate(file, streamToValidate, reporter);
-
- } else
- { for (int i = 0; i < changedFiles.length; i++)
- {
- String fileName = changedFiles[i];
- if (fileName != null)
- {
- Object[] parms = {fileName};
-
- IFile file = (IFile) helper.loadModel(Helper.GET_FILE, parms);
- if (file != null)
- {
- validateIfNeeded(file, helper, reporter);
- }
- }
- }
- }
- } else
- {
- Object[] parms = {this.getClass().getName()};
- Collection files = (Collection) helper.loadModel(Helper.GET_PROJECT_FILES, parms);
- Iterator iter = files.iterator();
- while (iter.hasNext())
- {
- IFile file = (IFile) iter.next();
- validateIfNeeded(file, helper, reporter);
- }
- }
- }
-
- /**
- * @param file
- * @param reporter
- * @param ruleGroup
- */
- protected void validate(IFile file, IReporter reporter, int ruleGroup)
- {
- ValidateWSDLAction validateAction = new ValidateWSDLAction(file, false);
- validateAction.setValidator(this);
- validateAction.run();
- }
-
- /**
- * Validate the given file if validation is required.
- *
- * @param file
- * @param model
- * @param helper
- * @param reporter
- */
- protected void validateIfNeeded(IFile file, Object model, IValidationContext helper, IReporter reporter)
- {
- if (model == null)
- {
- validateIfNeeded(file, helper, reporter);
- }
- }
-
- /**
- * Unpacks the fileModelPair and returns an IFile object.
- */
- protected IFile getFile(Object object)
- {
- IFile result = null;
- if (object instanceof List)
- {
- List fileModelPair = (List) object;
- if (fileModelPair.size() > 0)
- {
- Object file = fileModelPair.get(0);
- if (file instanceof IFile)
- {
- result = (IFile) file;
- }
- }
- }
- return result;
- }
-
- /**
- * Validate the given file if validation is required.
- *
- * @param file
- * The file to validate.
- * @param helper
- * An aid for the validation.
- * @param reporter
- * The reporter to report the validation messages.
- */
- protected void validateIfNeeded(IFile file, IValidationContext helper, IReporter reporter)
- {
- ValidatorManager mgr = ValidatorManager.getManager();
- // Pass in a "null" so that loadModel doesn't attempt to cast the result into a RefObject.
- Integer ruleGroupInt = (Integer) helper.loadModel(IRuleGroup.PASS_LEVEL, null);
- int ruleGroup = (ruleGroupInt == null) ? IRuleGroup.PASS_FULL : ruleGroupInt.intValue();
-
- validate(file, reporter, ruleGroup);
- }
-
- /*
- * (non-Javadoc)
- *
- * @see com.ibm.etools.validation.IValidator#cleanup(com.ibm.etools.validation.IReporter)
- */
- public void cleanup(IReporter reporter)
- {
- }
-} \ No newline at end of file

Back to the top