com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase.java Source code

Java tutorial

Introduction

Here is the source code for com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase.java

Source

package com.fasterxml.jackson.databind.jsontype.impl;

import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.jsontype.TypeIdResolver;
import com.fasterxml.jackson.databind.type.TypeFactory;

public abstract class TypeIdResolverBase implements TypeIdResolver {
    protected final JavaType _baseType;
    protected final TypeFactory _typeFactory;

    protected TypeIdResolverBase(JavaType paramJavaType, TypeFactory paramTypeFactory) {
        this._baseType = paramJavaType;
        this._typeFactory = paramTypeFactory;
    }

    public String idFromBaseType() {
        return idFromValueAndType(null, this._baseType.getRawClass());
    }

    public void init(JavaType paramJavaType) {
    }
}

/* Location:           /Users/dantheman/src/fffffffffattttt/basis/classes_dex2jar.jar
 * Qualified Name:     com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
 * JD-Core Version:    0.6.2
 */