jp.co.justsystem.choco.model.function
クラス FunctionInt1

java.lang.Object
  |
  +--jp.co.justsystem.choco.model.function.FunctionArg1
        |
        +--jp.co.justsystem.choco.model.function.FunctionInt1
すべての実装インタフェース:
Function

public abstract class FunctionInt1
extends FunctionArg1

関数呼び出し(int 引数1つ)


インタフェース jp.co.justsystem.choco.model.function.Function から継承したフィールド
TYPE_DELAY, TYPE_NONE, TYPE_VOLATILE
 
コンストラクタの概要
FunctionInt1()
           
 
メソッドの概要
 void call(FuncArg arg, ExprValue result)
          関数呼び出し
protected abstract  void callInt1(int arg, ExprValue result)
          call メソッドから1つの整数値が渡されて、呼び出されます。
 
クラス jp.co.justsystem.choco.model.function.FunctionArg1 から継承したメソッド
getMaxArgc, getMinArgc, getType
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
インタフェース jp.co.justsystem.choco.model.function.Function から継承したメソッド
getName
 

コンストラクタの詳細

FunctionInt1

public FunctionInt1()
メソッドの詳細

call

public void call(FuncArg arg,
                 ExprValue result)
          throws jp.co.justsystem.choco.model.ValueException
インタフェース Function の記述:
関数呼び出し
インタフェース jp.co.justsystem.choco.model.function.Function からコピーされたタグ:
パラメータ:
arg - 関数引数
result - 関数評価結果格納領域
例外:
ValueException -  

callInt1

protected abstract void callInt1(int arg,
                                 ExprValue result)
call メソッドから1つの整数値が渡されて、呼び出されます。
パラメータ:
arg - 整数値引数
result - 関数評価結果格納領域