public class ArraySchemaTools
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
ARRAY_COMPONENT_ENTITY_NAME |
static java.lang.String |
ARRAY_IMPLEMENTATION_PACKAGE |
static java.lang.String |
ARRAY_MANAGER_ENTITY_NAME |
static java.lang.String |
ARRAY_NAMESPACE_PREFIX |
static java.lang.String |
MANAGER_ALIAS_POSTFIX
Name will be appended on the source array attribute name following the relation postfix, i.e.
|
static java.lang.String |
VALUE_ALIAS |
Modifier and Type | Method and Description |
---|---|
static void |
assertArrayAttribute(AttributeI attr) |
static AttributeI |
createAlias(InstrumentingSchemaI schema,
EntityI entity,
WrappingArrayType type,
java.lang.String name)
Creates a new virtual property (alias) on the ArrayZeilenDelegate entity or a subentity to access and manipulate the
component value of a source array.
|
static AttributeI |
createAlias(InstrumentingSchemaI schema,
EntityI entity,
WrappingArrayType type,
java.lang.String name,
boolean isReadonly)
Creates a new virtual property (alias) on the ArrayZeilenDelegate entity or a subentity to access and manipulate the
component value of a source array.
|
static AttributeI |
createManyrelationForDelegates(InstrumentingSchemaI schema,
AttributeI wrapperAttr,
EntityI typeEntity,
java.lang.String manyRelName)
Registers a new virtual many relation with the specified name, manyRelName,
on the entity of the given wrapper attribute, returning instances of typeEntity.
|
static AttributeI |
createManyrelationForDelegates(InstrumentingSchemaI schema,
AttributeI wrapperAttr,
EntityI typeEntity,
java.lang.String manyRelName,
boolean isReadOnly)
Registers a new virtual many relation with the specified name, manyRelName,
on the entity of the given wrapper attribute, returning instances of typeEntity.
|
static WrappingArrayType |
getArrayAttributeType(AttributeI attr) |
static java.lang.String |
getNamespace(AttributeI arrayAttribute)
Generates a unique namespace name to be used as name for the virtual entity of the ArrayZeilenDelegate,
which uses this attribute as the only source array.
|
static java.lang.String |
getNamespace(AttributeI[] attributes)
Generates a unique but fixed namespace name for an ordered list of attributes
|
static boolean |
isArrayAttribute(AttributeI attr) |
static AttributeI |
registerArrayNamespace(InstrumentingSchemaI schema,
AttributeI arrayAttribute) |
static AttributeI |
registerArrayNamespace(InstrumentingSchemaI schema,
AttributeI arrayAttribute,
java.lang.String manyrelationName) |
static AttributeI |
registerArrayNamespace(InstrumentingSchemaI schema,
AttributeI arrayAttribute,
java.lang.String manyrelationName,
java.lang.String namespace)
Creates and registers the virtual entity and attribute modifications to access the components of an array
as relation.
|
public static final java.lang.String ARRAY_IMPLEMENTATION_PACKAGE
public static final java.lang.String ARRAY_MANAGER_ENTITY_NAME
public static final java.lang.String ARRAY_COMPONENT_ENTITY_NAME
public static final java.lang.String ARRAY_NAMESPACE_PREFIX
public static final java.lang.String MANAGER_ALIAS_POSTFIX
public static final java.lang.String VALUE_ALIAS
public static boolean isArrayAttribute(AttributeI attr)
public static void assertArrayAttribute(AttributeI attr)
an
- IllegalArgumentException if and only if attr is not an array attributepublic static WrappingArrayType getArrayAttributeType(AttributeI attr)
public static java.lang.String getNamespace(AttributeI arrayAttribute)
public static java.lang.String getNamespace(AttributeI[] attributes)
public static AttributeI registerArrayNamespace(InstrumentingSchemaI schema, AttributeI arrayAttribute)
public static AttributeI registerArrayNamespace(InstrumentingSchemaI schema, AttributeI arrayAttribute, java.lang.String manyrelationName)
public static AttributeI registerArrayNamespace(InstrumentingSchemaI schema, AttributeI arrayAttribute, java.lang.String manyrelationName, java.lang.String namespace)
ArrayZeilenWrapper
with only this attribute as datasource.
With the exception of the actual manyrelationName attribute, which isn't checked, all entities and attributes are not redefined if they already exist.schema
- the nonnull InstrumentingSchemaI to create the virtual entities witharrayAttribute
- the source attribute representing an array valuemanyrelationName
- the explicit name of the manyrelation that represents the arrayAttribute's values. Cannot exist on the array attributes entity name
before calling this method. This method makes no guarantees whether an exception is thrown or the pre-existing attribute is simply returned.namespace
- the explicit name of the virtualEntity that will represent a single component valuepublic static AttributeI createManyrelationForDelegates(InstrumentingSchemaI schema, AttributeI wrapperAttr, EntityI typeEntity, java.lang.String manyRelName)
schema
- A non-null InstrumentingSchemaI to register a new virtual property on.wrapperAttr
- A nullable attribute of a n-1 relation returning an identical ArrayZeilenWrapper instance per bo.typeEntity
- The entity (or virtual entity) of the ArrayZeilenDelegate that will be returned.manyRelName
- A non-empty name for the created many relation.public static AttributeI createManyrelationForDelegates(InstrumentingSchemaI schema, AttributeI wrapperAttr, EntityI typeEntity, java.lang.String manyRelName, boolean isReadOnly)
schema
- A non-null InstrumentingSchemaI to register a new virtual property on.wrapperAttr
- A nullable attribute of a n-1 relation returning an identical ArrayZeilenWrapper instance per bo.typeEntity
- The entity (or virtual entity) of the ArrayZeilenDelegate that will be returned.manyRelName
- A non-empty name for the created many relation.isReadOnly
- if true, then the createdVirtualProperty will be read-only, i.e. doesn't allow adding or removing lines.public static AttributeI createAlias(InstrumentingSchemaI schema, EntityI entity, WrappingArrayType type, java.lang.String name)
schema
- The non-null schema where the virtual property 'alias' will be declared.entity
- The non-null entity, either the ArrayZeilenDelegate or one of its subentities.type
- The non-null type of the array that should be displayed. This information is needed by the GUI for
formatting options.name
- The name of the alias/virtual property to create.public static AttributeI createAlias(InstrumentingSchemaI schema, EntityI entity, WrappingArrayType type, java.lang.String name, boolean isReadonly)
schema
- The non-null schema where the virtual property 'alias' will be declared.entity
- The non-null entity, either the ArrayZeilenDelegate or one of its subentities.type
- The non-null type of the array that should be displayed. This information is needed by the GUI for
formatting options.name
- The name of the alias/virtual property to create.isReadonly
- If true, the alias will be read-only, meaning it can read from the source array but cannot modify it.
Defaults to false, indicating read/write access.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.