Package com.asakusafw.runtime.model

Examples of com.asakusafw.runtime.model.ModelOutputLocation


     * </p>
     * @return このファクトリが利用する{@link ModelOutput}クラス
     * @throws ClassNotFoundException クラスが見つからない場合
     */
    protected Class<?> findModelOutputClass() throws ClassNotFoundException {
        ModelOutputLocation annotation = modelClass.getAnnotation(ModelOutputLocation.class);
        if (annotation != null) {
            return annotation.value();
        }
        LOG.warn(MessageFormat.format(
                "Data model class \"{0}\" does not have annotation \"{1}\"",
                modelClass.getName(),
                ModelOutputLocation.class.getName(),
View Full Code Here

TOP

Related Classes of com.asakusafw.runtime.model.ModelOutputLocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.