com.fasterxml.jackson.annotation.JsonSubTypes.java Source code

Java tutorial

Introduction

Here is the source code for com.fasterxml.jackson.annotation.JsonSubTypes.java

Source

package com.fasterxml.jackson.annotation;

import java.lang.annotation.Annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ java.lang.annotation.ElementType.ANNOTATION_TYPE, java.lang.annotation.ElementType.TYPE,
        java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.METHOD,
        java.lang.annotation.ElementType.PARAMETER })
public @interface JsonSubTypes {
    public abstract Type[] value();

    public static @interface Type {
        public abstract String name();

        public abstract Class<?> value();
    }
}

/* Location:           /Users/dantheman/src/fffffffffattttt/basis/classes_dex2jar.jar
 * Qualified Name:     com.fasterxml.jackson.annotation.JsonSubTypes
 * JD-Core Version:    0.6.2
 */