12 lines
228 B
Java
12 lines
228 B
Java
package javax.baja.bacnet.io;
|
|
|
|
public interface PropertyReference {
|
|
int getPropertyArrayIndex();
|
|
|
|
int getPropertyId();
|
|
|
|
void readAsn(AsnInput asnInput) throws AsnException;
|
|
|
|
void writeAsn(AsnOutput asnOutput);
|
|
}
|