blob: 64d045b8cb40c7844fc81f6222e0a8172b8a35b7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 Sybase, Inc. 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:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.pagedesigner.dtmanager.converter.internal;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jst.jsf.common.internal.pde.AbstractSimpleClassExtensionRegistryReader;
import org.eclipse.jst.pagedesigner.IJMTConstants;
import org.eclipse.jst.pagedesigner.PDPlugin;
/**
* @author mengbo
* @version 1.5
*/
public class AttributeValueResolverRegistryReader extends
AbstractSimpleClassExtensionRegistryReader<IAttributeValueResolver>
{
private final static AttributeValueResolverRegistryReader INSTANCE = new AttributeValueResolverRegistryReader();
/**
* Not externally instantiable.
*/
private AttributeValueResolverRegistryReader()
{
super(PDPlugin.getPluginId(),
IJMTConstants.EXTENSION_POINT_PAGEDESIGNER,
"attributeValueResolver", //$NON-NLS-1$
"class", //$NON-NLS-1$
new CanonicalComparatorWithPrefixExceptions<IAttributeValueResolver>()
{
@Override
protected int prefixSort(
SortableExecutableExtension<IAttributeValueResolver> o1,
SortableExecutableExtension<IAttributeValueResolver> o2)
{
// if o1 is contributed by open source, sort it
// after
if (o1.getContributorId().startsWith("org.eclipse.jst")) //$NON-NLS-1$
{
return 1;
}
// if o2 is contributed by open source, sort o1 first
else if (o2.getContributorId().startsWith("org.eclipse.jst")) //$NON-NLS-1$
{
return -1;
}
// otherwise, we don't care
return 0;
}
});
}
/**
* @return singleton instance.
*/
public static AttributeValueResolverRegistryReader getInstance()
{
return INSTANCE;
}
@Override
protected void handleLoadFailure(CoreException ce)
{
PDPlugin.log("Loading Attribute Value Resolver extensions", ce); //$NON-NLS-1$
}
}