44 lines
1.0 KiB
Java
44 lines
1.0 KiB
Java
package com.tridium.eas.api;
|
|
|
|
import java.util.Vector;
|
|
|
|
public interface GroupExec {
|
|
int addChild(int i, int i2, int i3, String str);
|
|
|
|
int addProperty(int i, Property property, String str);
|
|
|
|
int countChildren(int i, String str);
|
|
|
|
int create(String str, char c, String str2, String str3);
|
|
|
|
Group getByName(String str, String str2);
|
|
|
|
Vector getDataPointGroups(int i, String str);
|
|
|
|
Vector getGroups(char c, String str);
|
|
|
|
Vector getParents(int i, String str);
|
|
|
|
Property getProperty(int i, String str, String str2);
|
|
|
|
Property getProperty(Group group, String str, String str2);
|
|
|
|
String[] getPropertyNames(int i, String str);
|
|
|
|
Group load(int i, String str);
|
|
|
|
Vector loadChildren(int i, String str);
|
|
|
|
int remChild(int i, int i2, String str);
|
|
|
|
int remChildren(int i, String str);
|
|
|
|
int remProperty(int i, String str, String str2);
|
|
|
|
int remove(int i, String str);
|
|
|
|
int setProperty(int i, Property property, String str);
|
|
|
|
boolean update(int i, String str, String str2, String str3);
|
|
}
|