
org.eclipse.packagedrone.utils.converter.ConvertBy Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2016 IBH SYSTEMS GmbH 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:
* IBH SYSTEMS GmbH - initial API and implementation
*******************************************************************************/
package org.eclipse.packagedrone.utils.converter;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention ( RUNTIME )
@Target ( { TYPE, FIELD, METHOD, PARAMETER } )
@Repeatable ( ConvertBys.class )
public @interface ConvertBy
{
Class extends Converter> value ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy