📄 streamattvali.java
字号:
/** * A representation of all the attribute values associated with a particular * stream. The format of the stream is given by an AttDescVecI object. * * @author Waleed Kadous * @version $Id: StreamAttValI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $ */package tclass; import java.io.*; public interface StreamAttValI { /** * Set the value of the <i>i</i>th attribute to a particular * value. * * @param att The attribute to change. More info on the attributes can * be found from the AttDescVecI object. */ public void setAtt(int att, float value); /** * Get the value of the <i>i</i>th attribute * * @param att Attribute you want the value for. * @return the value of the <i>i</i>th attribute. */ public float getAtt(int att); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -