Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.xml.core/src-validation/org/eclipse/wst/xml/core/internal/validation/errorcustomization/ErrorMessageCustomizerDelegate.java')
-rw-r--r--bundles/org.eclipse.wst.xml.core/src-validation/org/eclipse/wst/xml/core/internal/validation/errorcustomization/ErrorMessageCustomizerDelegate.java72
1 files changed, 0 insertions, 72 deletions
diff --git a/bundles/org.eclipse.wst.xml.core/src-validation/org/eclipse/wst/xml/core/internal/validation/errorcustomization/ErrorMessageCustomizerDelegate.java b/bundles/org.eclipse.wst.xml.core/src-validation/org/eclipse/wst/xml/core/internal/validation/errorcustomization/ErrorMessageCustomizerDelegate.java
deleted file mode 100644
index 07147c1455..0000000000
--- a/bundles/org.eclipse.wst.xml.core/src-validation/org/eclipse/wst/xml/core/internal/validation/errorcustomization/ErrorMessageCustomizerDelegate.java
+++ /dev/null
@@ -1,72 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 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.wst.xml.core.internal.validation.errorcustomization;
-
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
-import org.eclipse.wst.xml.core.internal.XMLCorePlugin;
-import org.osgi.framework.Bundle;
-
-/**
- * An error message customizer delegate is used to allow for
- * lazy loading of error customizers.
- *
- */
-public class ErrorMessageCustomizerDelegate implements IErrorMessageCustomizer
-{
- protected Bundle bundle = null;
- protected String classname = null;
- protected IErrorMessageCustomizer customizer = null;
-
- public ErrorMessageCustomizerDelegate(Bundle bundle, String classname)
- {
- this.bundle = bundle;
- this.classname = classname;
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.wst.xml.core.internal.validation.errorcustomization.IErrorMessageCustomizer#customizeMessage(org.eclipse.wst.xml.core.internal.validation.errorcustomization.ElementInformation, java.lang.String, java.lang.Object[])
- */
- public String customizeMessage(ElementInformation elementInfo, String errorKey, Object[] arguments)
- {
- if(customizer == null)
- {
- loadCustomizer();
- }
- if(customizer == null)
- {
- return null;
- }
- return customizer.customizeMessage(elementInfo, errorKey, arguments);
- }
-
- /**
- * Load the customizer class.
- */
- protected void loadCustomizer()
- {
- try
- {
- Class customizerClass = bundle.loadClass(classname);
- customizer = (IErrorMessageCustomizer)customizerClass.newInstance();
- }
- catch(Exception e)
- {
- XMLCorePlugin.getDefault().getLog().log(
- new Status(IStatus.WARNING,
- XMLCorePlugin.getDefault().getBundle().getSymbolicName(),
- IStatus.OK,
- "The XML validator error customizer was unable to load class " + classname, e)); //$NON-NLS-1$
- }
- }
-
-
-}

Back to the top