📄 writabledictionary.java
字号:
/**
* $Id: WritableDictionary.java,v 1.1 2005/09/04 22:11:00 wuttke Exp $
* Created on 28.08.2005
* @author mw
* @version $Revision: 1.1 $
*/
package org.tinyradius.dictionary;
/**
* A dictionary that is not read-only. Provides methods
* to add entries to the dictionary.
*/
public interface WritableDictionary
extends Dictionary {
/**
* Adds the given vendor to the dictionary.
* @param vendorId vendor ID
* @param vendorName name of the vendor
*/
public void addVendor(int vendorId, String vendorName);
/**
* Adds an AttributeType object to the dictionary.
* @param attributeType AttributeType object
*/
public void addAttributeType(AttributeType attributeType);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -