ludc
2024-09-14 36c2449aec5b51e5ed4e5c6841154b746060e09a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.vci.client.omd.enumManager.toOutside;
 
import java.util.ArrayList;
 
import com.vci.corba.omd.etm.EnumItem;
 
public interface InterEM{
    
    /**
     * 使用枚举的属性名列表
     * @param emName
     * @return
     */
    public ArrayList<String> getUsedNameList(String emName);
    
    /**
     * 该枚举是否使用
     * @param enumItemName
     * @return
     */
    public boolean isEnumItemUsed(String enumItemName);
 
    /**
     * 该枚举子项是否使用
     * @param enumItemName
     * @param enumChildName
     * @return
     */
    public boolean isEnumChildUsed(String enumItemName, String enumChildName);
    
    /**
     * 更改使用枚举的属性值域
     * @param ei
     */
    public void updateAtt(EnumItem ei);
}