16 lines
361 B
Java
16 lines
361 B
Java
package com.honeywell.bacnetSpyder.networkInterface;
|
|
|
|
public interface IPriorityArray extends IBACnetNwObject {
|
|
int getLogicCommandPriority();
|
|
|
|
float getRelinquishValue();
|
|
|
|
boolean getRelinquishValueChangedFlag();
|
|
|
|
void setLogicCommandPriority(int i);
|
|
|
|
void setRelinquishValue(float f);
|
|
|
|
void setRelinquishValueChangedFlag(boolean z);
|
|
}
|