24 lines
413 B
Java
24 lines
413 B
Java
package javax.baja.bacnet.io;
|
|
|
|
public interface PropertyValue {
|
|
int getErrorClass();
|
|
|
|
int getErrorCode();
|
|
|
|
int getPriority();
|
|
|
|
ErrorType getPropertyAccessError();
|
|
|
|
int getPropertyArrayIndex();
|
|
|
|
int getPropertyId();
|
|
|
|
byte[] getPropertyValue();
|
|
|
|
boolean isError();
|
|
|
|
void readAsn(AsnInput asnInput) throws AsnException, RejectException;
|
|
|
|
void writeAsn(AsnOutput asnOutput);
|
|
}
|