Package com.asakusafw.modelgen.util

Source Code of com.asakusafw.modelgen.util.ModelBuilder

/**
* Copyright 2011-2014 Asakusa Framework Team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.asakusafw.modelgen.util;

import com.asakusafw.modelgen.model.ModelDescription;
import com.asakusafw.modelgen.model.ModelReference;

/**
* {@code *ModelBuilder}の基底。
* @param <T> 実装クラスの型
*/
public abstract class ModelBuilder<T extends ModelBuilder<T>> {

    private String namespace;

    private String simpleName;

    /**
     * インスタンスを生成する。
     * @param simpleName 生成するモデルの単純名
     * @see #namespace(String...)
     * @throws IllegalArgumentException 引数に{@code null}が指定された場合
     */
    public ModelBuilder(String simpleName) {
        if (simpleName == null) {
            throw new IllegalArgumentException("simpleName must not be null"); //$NON-NLS-1$
        }
        this.simpleName = simpleName;
    }

    /**
     * 対象のモデルに対する参照を返す。
     * @return 対象のモデルに対する参照
     */
    public ModelReference getReference() {
        return new ModelReference(namespace, simpleName);
    }

    /**
     * 対象のモデルが属する名前空間を設定する。
     * @param names 設定する名前空間、標準を利用する場合は空の配列
     * @return このオブジェクト (メソッドチェイン用)
     * @throws IllegalArgumentException 引数に{@code null}が指定された場合
     */
    @SuppressWarnings("unchecked")
    public T namespace(String...names) {
        if (names == null) {
            throw new IllegalArgumentException("names must not be null"); //$NON-NLS-1$
        }
        if (names.length == 0) {
            this.namespace = null;
        } else {
            StringBuilder buf = new StringBuilder();
            buf.append(names[0]);
            for (int i = 1; i < names.length; i++) {
                buf.append(".");
                buf.append(names[i]);
            }
            this.namespace = buf.toString();
        }
        return (T) this;
    }


    /**
     * ここまでの情報を元に、{@link ModelDescription}を構築して返す。
     * @return 構築したモデル
     * @throws IllegalStateException 構築に必要な情報が揃っていない場合
     */
    public abstract ModelDescription toDescription();
}
TOP

Related Classes of com.asakusafw.modelgen.util.ModelBuilder

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.