org.reflections.serializers.JavassistSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.reflections
Show all versions of org.apache.servicemix.bundles.reflections
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
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