DoubleConstantSource.java
/*
* $Id: ConstantSource.java,v 1.6 2008/07/15 15:27:15 koga Exp $
*
* Copyright (C) 2004 Koga Laboratory. All rights reserved.
*
*/
package org.mklab.tool.control.system.source;
import org.mklab.nfc.matrix.DoubleMatrix;
import org.mklab.tool.control.system.parameter.Parameter;
import org.mklab.tool.control.system.parameter.ParameterUpdator;
import org.mklab.tool.control.system.parameter.StringExternalizable;
/**
* 定数信号を発生するシステムを表すクラスです。
*
* @author Koga Laboratory
* @version $Revision: 1.6 $, 2005/06/15
*/
public class DoubleConstantSource extends DoubleContinuousSource implements ParameterUpdator, StringExternalizable {
/** 定数信号 */
@Parameter(name = "constant", description = "ConstantSource.1", update = true, internationalization = true)
private DoubleMatrix constant = new DoubleMatrix(1, 1);
/**
* 新しく生成された<code>ConstantSource</code>オブジェクトを初期化します。
*
* @param constant 定数
*/
public DoubleConstantSource(final DoubleMatrix constant) {
super(constant.getRowSize());
this.constant = constant.createClone();
}
/**
* 新しく生成された<code>ConstantSource</code>オブジェクトを初期化します。
*/
public DoubleConstantSource() {
this(new DoubleMatrix(1, 1));
}
/**
* {@inheritDoc}
*/
@Override
public DoubleMatrix outputEquation( final double t) {
return this.constant.createClone();
}
/**
* 定数を設定します。
*
* @param constant 定数
*/
public void setConstant(final DoubleMatrix constant) {
this.constant = constant.createClone();
setOutputSize(constant.getRowSize());
}
/**
* 定数を返します。
*
* @return 定数
*/
public DoubleMatrix getConstant() {
return this.constant.createClone();
}
/**
* @see org.mklab.tool.control.system.parameter.ParameterUpdator#updateWith(java.lang.String)
*/
public boolean updateWith(String parameter) {
if (parameter.equals("constant")) { //$NON-NLS-1$
setConstant(this.constant);
return true;
}
return false;
}
/**
* @see org.mklab.tool.control.system.parameter.StringExternalizable#getString(java.lang.String)
*/
public String getString(String key) {
return Messages.getString(key);
}
/**
* @see org.mklab.tool.control.system.SystemOperator#equals(java.lang.Object)
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!super.equals(o)) {
return false;
}
if (o == null) {
return false;
}
if (o.getClass() != getClass()) {
return false;
}
DoubleConstantSource castedObj = (DoubleConstantSource)o;
return ((this.constant == null ? castedObj.constant == null : this.constant.equals(castedObj.constant)));
}
/**
* @see org.mklab.tool.control.system.SystemOperator#hashCode()
*/
@Override
public int hashCode() {
int hashCode = super.hashCode();
hashCode = 31 * hashCode + (this.constant == null ? 0 : this.constant.hashCode());
return hashCode;
}
}