2026-03-17 13:31:18 -07:00

14 lines
303 B
Java

package com.tridium.orion;
public interface OrionModel {
OrionType addType(OrionType orionType);
BTypeDependency[] getDependentTypes(OrionType orionType);
OrionType getType(BOrionTypeId bOrionTypeId);
OrionType getType(OrionType orionType, boolean z);
OrionType[] getTypes();
}