All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reflections.serializers.JavassistSerializer Maven / Gradle / Ivy

There is a newer version: 0.9.12_1
Show newest version
package org.reflections.serializers;

import org.reflections.Configuration;
import org.reflections.Reflections;
import org.reflections.adapters.MetadataAdapter;

import java.io.File;
import java.io.InputStream;

/**
 *
 */
public class JavassistSerializer implements Serializer {

    private final MetadataAdapter javassist;

    public JavassistSerializer(Configuration configuration) {
        javassist = configuration.getMetadataAdapter();
    }

    @Override
    public Reflections read(InputStream inputStream) {
//        new BytecGodeGene
        return null;
    }

    @Override
    public File save(Reflections reflections, String filename) {
        return null;
    }

    @Override
    public String toString(Reflections reflections) {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy