public interface FauxPropertyDao
| Modifier and Type | Method and Description |
|---|---|
void |
deleteFauxProperty(FauxProperty fp)
Delete this FauxProperty from the display model.
|
List<FauxProperty> |
getFauxPropertiesForBaseUri(String uri)
Get all of the FauxProperties that are based on this URI.
|
FauxProperty |
getFauxPropertyByUris(String domainUri,
String baseUri,
String rangeUri)
If the display model contains a ConfigContext based on these URIs, get
the FauxProperty that it describes.
|
FauxProperty |
getFauxPropertyFromContextUri(String contextUri)
If the display model contains a ConfigContext with this URI, get the
FauxProperty that it describes.
|
void |
insertFauxProperty(FauxProperty fp)
Creates a new FauxProperty in the display model.
|
void |
updateFauxProperty(FauxProperty fp)
Updates the properties of this FauxProperty in the display model.
|
List<FauxProperty> getFauxPropertiesForBaseUri(String uri)
FauxProperty getFauxPropertyFromContextUri(String contextUri)
FauxProperty getFauxPropertyByUris(String domainUri, String baseUri, String rangeUri)
domainUri - May be null, but then this will only match a ConfigContext
that has no qualifiedByDomain property.baseUri - Object of configContextFor property. May not be null.rangeUri - Object of qualifiedBy property. May not be null.void insertFauxProperty(FauxProperty fp)
IllegalStateException - if fp does not have null values for contextUri and configUri,
or if a FauxProperty already exists with this combination of
domain, base, and range URIs.IllegalArgumentException - if fp is not internally consistent.void updateFauxProperty(FauxProperty fp)
IllegalStateException - if the display model contains no such individuals. If you
want to create a new FauxProperty instance, you should be
using insertFauxProperty() instead.IllegalArgumentException - if fp is not internally consistent.void deleteFauxProperty(FauxProperty fp)
Copyright © 2016. All rights reserved.