14 lines
303 B
Java
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();
|
|
}
|