All Downloads are FREE. Search and download functionalities are using the official Maven repository.

blanco.cg.valueobject.BlancoCgReturn Maven / Gradle / Ivy

Go to download

blancoCg is a simple code generator library. blancoCg supports Java/C#/JavaScript/VB.NET/PHP/Ruby/Python/Delphi/Swift/C++11.

There is a newer version: 2.1.21
Show newest version
/*
 * blanco Framework
 * Copyright (C) 2004-2009 IGA Tosiki
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 */
package blanco.cg.valueobject;

/**
 * 戻り値を表現するためのバリューオブジェクト。
 *
 * なお、メソッドの戻り値がvoidである場合には、設定する必要はありません。
 */
public class BlancoCgReturn {
    /**
     * この戻り値の説明です。
     *
     * フィールド: [description]。
     */
    private String fDescription;

    /**
     * この戻り値の型です。java.lang.Stringなどを指定します。
     *
     * フィールド: [type]。
     */
    private BlancoCgType fType;

    /**
     * フィールド [description] の値を設定します。
     *
     * フィールドの説明: [この戻り値の説明です。]。
     *
     * @param argDescription フィールド[description]に設定する値。
     */
    public void setDescription(final String argDescription) {
        fDescription = argDescription;
    }

    /**
     * フィールド [description] の値を取得します。
     *
     * フィールドの説明: [この戻り値の説明です。]。
     *
     * @return フィールド[description]から取得した値。
     */
    public String getDescription() {
        return fDescription;
    }

    /**
     * フィールド [type] の値を設定します。
     *
     * フィールドの説明: [この戻り値の型です。java.lang.Stringなどを指定します。]。
     *
     * @param argType フィールド[type]に設定する値。
     */
    public void setType(final BlancoCgType argType) {
        fType = argType;
    }

    /**
     * フィールド [type] の値を取得します。
     *
     * フィールドの説明: [この戻り値の型です。java.lang.Stringなどを指定します。]。
     *
     * @return フィールド[type]から取得した値。
     */
    public BlancoCgType getType() {
        return fType;
    }

    /**
     * このバリューオブジェクトの文字列表現を取得します。
     *
     * 

使用上の注意

*
    *
  • オブジェクトのシャロー範囲のみ文字列化の処理対象となります。 *
  • オブジェクトが循環参照している場合には、このメソッドは使わないでください。 *
* * @return バリューオブジェクトの文字列表現。 */ @Override public String toString() { final StringBuffer buf = new StringBuffer(); buf.append("blanco.cg.valueobject.BlancoCgReturn["); buf.append("description=" + fDescription); buf.append(",type=" + fType); buf.append("]"); return buf.toString(); } /** * このバリューオブジェクトを指定のターゲットに複写します。 * *

使用上の注意

*
    *
  • オブジェクトのシャロー範囲のみ複写処理対象となります。 *
  • オブジェクトが循環参照している場合には、このメソッドは使わないでください。 *
* * @param target target value object. */ public void copyTo(final BlancoCgReturn target) { if (target == null) { throw new IllegalArgumentException("Bug: BlancoCgReturn#copyTo(target): argument 'target' is null"); } // No needs to copy parent class. // Name: fDescription // Type: java.lang.String target.fDescription = this.fDescription; // Name: fType // Type: blanco.cg.valueobject.BlancoCgType // フィールド[fType]はサポート外の型[blanco.cg.valueobject.BlancoCgType]です。 } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy