org.eclipse.sisu.inject.PrioritySource Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2010-present Sonatype, Inc.
* 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:
* Stuart McCulloch (Sonatype, Inc.) - initial API and implementation
*******************************************************************************/
package org.eclipse.sisu.inject;
import java.lang.annotation.Annotation;
import org.eclipse.sisu.Priority;
import com.google.inject.Binding;
/**
* Implementation of @{@link Priority} that can also act as an @{@link AnnotatedSource}.
*/
final class PrioritySource
implements Priority, AnnotatedSource
{
// ----------------------------------------------------------------------
// Implementation fields
// ----------------------------------------------------------------------
private final Object source;
private final int value;
// ----------------------------------------------------------------------
// Constructors
// ----------------------------------------------------------------------
/**
* @param source The owning source
* @param value The priority
*/
PrioritySource( final Object source, final int value )
{
this.source = source;
this.value = value;
}
// ----------------------------------------------------------------------
// Public methods
// ----------------------------------------------------------------------
public int value()
{
return value;
}
public Class extends Annotation> annotationType()
{
return Priority.class;
}
@Override
public int hashCode()
{
return 127 * "value".hashCode() ^ Integer.valueOf( value ).hashCode();
}
@Override
public boolean equals( final Object rhs )
{
return this == rhs || ( rhs instanceof Priority && value == ( (Priority) rhs ).value() );
}
@Override
public String toString()
{
return null != source ? source.toString() : "@" + Priority.class.getName() + "(value=" + value + ")";
}
@SuppressWarnings( "unchecked" )
public T getAnnotation( final Binding> binding, final Class annotationType )
{
if ( Priority.class.equals( annotationType ) )
{
return (T) this;
}
if ( source instanceof AnnotatedSource )
{
return ( (AnnotatedSource) source ).getAnnotation( binding, annotationType );
}
return null;
}
}