Package com.asakusafw.runtime.model

Examples of com.asakusafw.runtime.model.ModelInputLocation


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

TOP

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

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.