public interface SchemaInterfaceI
This class encapsulates information about an interface defined within the schema XML document. It holds the interface name, its attributes, and the source XML element that defines the interface. It provides methods for performing validation and checks on the interface definition.
The <Interface>
element in the XML schema serves a specialized purpose,
defining a collection of attributes that will be implicitly implemented by any <Entity>
referencing it through an <implements>
subnode.
This behavior diverges from the conventional notion of interfaces in programming languages such as Java, where interfaces typically outline method signatures that implementing classes must explicitly provide.
<Entity>
incorporates an <implements>
subnode referencing an <Interface>
, all attributes defined within that <Interface>
are automatically integrated into the <Entity>
. There is no requirement to explicitly declare
or define these attributes within the <Entity>
itself as for now, to reduce "redundant"
information in the schema files.
<Interface name="TestInterface"> <attr name="AString"/> <attr name="AnInteger" type="Integer"/> <attr name="ABoolean" type="Boolean"/> </Interface> <Entity name="SomeEntity"> <implements name="TestInterface"/> </Entity>In this illustration,
SomeEntity
will inherently possess the attributes AString
,
AnInteger
and ABoolean
as part of its definition, even though they are not
explicitly declared within the <Entity>
itself.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
ATT_NAME_CODE_CUSTOM |
static java.lang.String |
ATT_NAME_NAME |
static java.lang.String |
CUSTOM_CODE_BASE_NAME |
static java.lang.String |
EL_NAME_CODE |
static java.lang.String |
EL_NAME_EXTENDS |
static java.lang.String |
REQUIRED_NAME_SUFFIX |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<? extends BasicAttributeI> |
getAllAttributes() |
java.util.Collection<electric.xml.Element> |
getAllXMLElements()
Returns a collection of XML elements representing the attributes defined in this interface,
and all schema-defined super interfaces of this interface.
|
java.util.Collection<? extends BasicAttributeI> |
getAttributes() |
java.util.Set<java.lang.String> |
getExtends()
Returns the names of one or more parent interfaces as a set of fully qualified class names
|
default java.lang.String |
getFQClassName() |
java.lang.String |
getName()
Returns the name of this SchemaInterfaceI instance.
|
java.lang.String |
getPackageName()
Returns the name of the package this interface belongs into.
|
SchemaI |
getSchema()
Returns the schema this interface is a part of
|
default java.lang.String |
getSourceFilename() |
java.util.Collection<electric.xml.Element> |
getXMLElements()
Returns a collection of XML elements representing the attributes defined in this interface.
|
boolean |
hasCustomCode()
if true, we may expect a custom-written interface class to be present for the interface of this name,
and the code generator will create a "basic" interface the custom interface may inherit from.
|
default java.lang.String |
parametersToString()
Generates a string representation of the parameters of this SchemaInterfaceI.
|
static final java.lang.String REQUIRED_NAME_SUFFIX
static final java.lang.String ATT_NAME_NAME
static final java.lang.String EL_NAME_EXTENDS
static final java.lang.String EL_NAME_CODE
static final java.lang.String ATT_NAME_CODE_CUSTOM
static final java.lang.String CUSTOM_CODE_BASE_NAME
java.lang.String getName()
Can also be used for querying objects in OQL queries that implement this interface.
SchemaI getSchema()
java.util.Set<java.lang.String> getExtends()
boolean hasCustomCode()
java.lang.String getPackageName()
default java.lang.String getFQClassName()
default java.lang.String getSourceFilename()
java.util.Collection<electric.xml.Element> getXMLElements()
java.util.Collection<electric.xml.Element> getAllXMLElements()
java.util.Collection<? extends BasicAttributeI> getAttributes()
java.util.Collection<? extends BasicAttributeI> getAllAttributes()
default java.lang.String parametersToString()
The returned string is in the format "[name=value]", where "value" is the result of
de.ipcon.tools.TypeDistiller#outVal(String)
applied to the interface's name.
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.