001package net.gdface.codegen.thrift.javadoc;
002
003import com.facebook.swift.codec.metadata.ClassCommentProvider;
004import com.google.common.base.Function;
005
006
007public class ClassCommentProviderFactoryImpl implements Function<Class<?>, ClassCommentProvider> {
008
009        public ClassCommentProviderFactoryImpl() {
010        }
011
012        @Override
013        public ClassCommentProvider apply(Class<?> clazz) {
014                return new ClassCommentProviderImpl(clazz);
015        }
016
017}