Package com.asakusafw.vocabulary.model

Examples of com.asakusafw.vocabulary.model.TableModel.columns()


        if (original != null) {
            return new ArrayList<String>(Arrays.asList(original.value()));
        }
        TableModel meta = modelType.getAnnotation(TableModel.class);
        if (meta != null) {
            return Arrays.asList(meta.columns());
        }

        StackTraceElement caller = getCaller();
        throw new UnsupportedOperationException(MessageFormat.format(
                "クラス{0}には@{1}の指定がないため、カラム名を自動的に判別できませんでした。{2}()をオーバーライドして明示的に指定して下さい",
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.