Verwendungen von Schnittstelle
ch.nolix.coreapi.documentapi.nodeapi.INode
Package
Beschreibung
The
ch.nolix.core.document.chainednode
package defines a chained
node.The
ch.nolix.core.document.node
package defines a document node.The
ch.nolix.core.net.endpoint3
package defines an end point and a
server for it.The
ch.nolix.coreapi.documentapi.chainednodeapi
package declares a
document chained node.The
ch.nolix.coreapi.documentapi.nodeapi
package declares a document
node.The
ch.nolix.coreapi.netapi.endpoint3api
package declares an end
point that can send commands and data requests.The
ch.nolix.system.application.main
package defines a base
application and a base client.The
ch.nolix.system.application.webapplication
package defines a
Application
for web.The
ch.nolix.system.element
package defines a base element.The
ch.nolix.system.element.multistateconfiguration
package defines a
cascading formatable
IMutableElement
.The
ch.nolix.system.element.mutableelement
package defines a base
IMutableElement
.The
ch.nolix.system.element.property
package defines properties.The
ch.nolix.system.element.relativevalue
package defines relative
values.The
ch.nolix.system.element.style
package defines a configuration.The
ch.nolix.system.graphic.color
package defines a color.The
ch.nolix.system.graphic.image
package defines an image.The
ch.nolix.system.gui.background
package defines the types that are
declared in the ch.nolix.systemapi.guiapi.backgroundapi
package.The
ch.nolix.system.noderawdata.datareader
package defines a
IDataReader
for
databases that base on BaseNode
s.The
ch.nolix.system.time.moment
package defines a time.The
ch.nolix.system.webgui.container
package defines the types that
are declared in the ch.nolix.systemapi.webguiapi.containerapi
package.The
ch.nolix.system.webgui.itemmenu
package defines the types that
are declared in the ch.nolix.systemapi.webguiapi.itemmenuapi
package.The
ch.nolix.system.webgui.main
package defines the types that are
declared in the ch.nolix.systemapi.webguiapi.mainapi
package.The
ch.nolix.systemapi.elementapi.baseapi
package declares an
element.The
ch.nolix.systemapi.elementapi.mutableelementapi
package declares
mutable elements.The
ch.nolix.systemapi.elementapi.propertyapi
package declares
properties.The
ch.nolix.systemapi.elementapi.styleapi
package declares a
configuration for elements.The
ch.nolix.systemapi.graphicapi.imageapi
package declares an image.The
ch.nolix.systemapi.guiapi.backgroundapi
package declares a
background.The
ch.nolix.systemapi.guiapi.canvasapi
package declares a canvas.The
ch.nolix.systemapi.guiapi.contentalignmentproperty
package
defines properties for the alignment of the content of GUIs or GUI elements.The
ch.nolix.systemapi.guiapi.fontapi
package declares a text format.The
ch.nolix.systemapi.guiapi.guiproperty
package defines properties
for GUIs and their elements.The
ch.nolix.systemapi.guiapi.presenceapi
package declares types for
presence.The
ch.nolix.systemapi.guiapi.visibilityapi
package declares types
for the structure of GUIs.The
ch.nolix.systemapi.objectdataapi.fieldproperty
package defines
properties for fields.The
ch.nolix.systemapi.timeapi.timestructureapi
package declares types
for time structure.The
ch.nolix.systemapi.webguiapi.atomiccontrolapi
package declares
IControl
s.The
ch.nolix.systemapi.webguiapi.basecontainerapi
package declares a
base container IControl
.The
ch.nolix.systemapi.webguiapi.containerapi
package declares
container IControl
s.The
ch.nolix.systemapi.webguiapi.mainapi
package declares a web GUI.-
Verwendungen von INode in ch.nolix.core.document.chainednode
Modifizierer und TypMethodeBeschreibungstatic ChainedNode
static ChainedNode
ChainedNode.withChildNodesFromNodes
(INode<?> childNode, INode<?>... childNodes) static ChainedNode
ChainedNode.withHeaderAndChildNode
(String header, INode<?> childNode) static ChainedNode
ChainedNode.withHeaderAndChildNodesFromNodes
(String header, INode<?> childNode, INode<?>... childNodes) Creates a newChainedNode
with the given header and attributes.Modifizierer und TypMethodeBeschreibungstatic ChainedNode
ChainedNode.withChildNodesFromNodes
(Iterable<? extends INode<?>> attributes) Creates a newChainedNode
with the given attributes.static ChainedNode
ChainedNode.withHeaderAndChildNodesFromNodes
(String header, Iterable<? extends INode<?>> attributes) Creates a newChainedNode
with the given header and attributes.ModifiziererKonstruktorBeschreibungChainedNode
(String header, Iterable<INode<?>> attributes) Creates a newChainedNode
with the given header and attributes.ChainedNode
(String header, Iterable<INode<?>> attributes, ChainedNode nextNode) Creates a newChainedNode
with the given header, attributes and nextNode. -
Verwendungen von INode in ch.nolix.core.document.node
Modifizierer und TypKlasseBeschreibungclass
BaseMutableNode<MN extends BaseMutableNode<MN>>
class
final class
AFileNode
is a specification that is stored in a file.final class
final class
ANode
is not mutable.Modifizierer und TypMethodeBeschreibungFileNode.addChildNodes
(Iterable<N> childNodes) Adds the given childNodes to the currentIMutableNode
.<N extends INode<?>>
MutableNodeMutableNode.addChildNodes
(Iterable<N> pChildNodes) Adds the given childNodes to the currentIMutableNode
.Modifizierer und TypMethodeBeschreibungINode
<?> FileNode.asWithHeader
(String header) INode
<?> MutableNode.asWithHeader
(String header) INode
<?> Node.asWithHeader
(String header) Modifizierer und TypMethodeBeschreibungFileNode.addChildNode
(INode<?> childNode, INode<?>... childNodes) Adds the given childNodes to the currentIMutableNode
.MutableNode.addChildNode
(INode<?> childNode, INode<?>... childNodes) Adds the given childNodes to the currentIMutableNode
.static MutableNode
static Node
void
FileNode.replaceFirstChildNodeWithGivenHeaderByGivenNode
(String header, INode<?> node) Replaces the first childINode
with the given header from the currentIMutableNode
by the givenINode
.void
MutableNode.replaceFirstChildNodeWithGivenHeaderByGivenNode
(String header, INode<?> childNode) Replaces the first childINode
with the given header from the currentIMutableNode
by the givenINode
.static Node
Node.withChildNode
(INode<?> childNode, INode<?>... childNodes) static Node
Node.withHeaderAndChildNode
(String header, INode<?> childNode, INode<?>... childNodes) Modifizierer und TypMethodeBeschreibungfinal boolean
BaseNode.containsChildNodeThat
(Predicate<INode<?>> selector) BaseNode.getOptionalStoredFirstChildNodeThat
(Predicate<INode<?>> selector) final IContainer
<BN> BaseNode.getStoredChildNodesThat
(Predicate<INode<?>> selector) final BN
BaseNode.getStoredFirstChildNodeThat
(Predicate<INode<?>> selector) FileNode.removeAndGetStoredFirstChildNodeThat
(Predicate<INode<?>> selector) Removes and returns the first childINode
the given selector selects from the currentIMutableNode
.MutableNode.removeAndGetStoredFirstChildNodeThat
(Predicate<INode<?>> selector) Removes and returns the first childINode
the given selector selects from the currentIMutableNode
.void
FileNode.removeFirstChildNodeThat
(Predicate<? extends INode<?>> selector) Removes the first childINode
the given selector selects from the currentIMutableNode
.void
MutableNode.removeFirstChildNodeThat
(Predicate<? extends INode<?>> selector) Removes the first childINode
the given selector selects from the currentIMutableNode
.final MN
BaseMutableNode.setChildNodes
(Iterable<? extends INode<?>> childNodes) Resets the childINode
s of the currentIMutableNode
with the given childNodes.static Node
Node.withChildNodes
(Iterable<? extends INode<?>> childNodes) static Node
Node.withHeaderAndChildNodes
(String header, Iterable<? extends INode<?>> childNodes) -
Verwendungen von INode in ch.nolix.core.net.endpoint3
Modifizierer und TypMethodeBeschreibungINode
<?> LocalEndPoint.getDataForRequest
(IChainedNode request) INode
<?> NetEndPoint.getDataForRequest
(IChainedNode request) Modifizierer und TypMethodeBeschreibungIContainer
<? extends INode<?>> LocalEndPoint.getDataForRequests
(IChainedNode request, IChainedNode... requests) IContainer
<? extends INode<?>> LocalEndPoint.getDataForRequests
(Iterable<? extends IChainedNode> requests) IContainer
<? extends INode<?>> NetEndPoint.getDataForRequests
(IChainedNode request, IChainedNode... requests) IContainer
<? extends INode<?>> NetEndPoint.getDataForRequests
(Iterable<? extends IChainedNode> requests) -
Verwendungen von INode in ch.nolix.coreapi.documentapi.chainednodeapi
-
Verwendungen von INode in ch.nolix.coreapi.documentapi.nodeapi
Modifizierer und TypSchnittstelleBeschreibunginterface
Modifizierer und TypSchnittstelleBeschreibunginterface
IMutableNode<MN extends IMutableNode<MN>>
AIMutableNode
is aINode
that is mutable.Modifizierer und TypMethodeBeschreibungIMutableNode.addChildNodes
(Iterable<N> childNodes) Adds the given childNodes to the currentIMutableNode
.Modifizierer und TypMethodeBeschreibungIMutableNode.addChildNode
(INode<?> childNode, INode<?>... childNodes) Adds the given childNodes to the currentIMutableNode
.void
IMutableNode.replaceFirstChildNodeWithGivenHeaderByGivenNode
(String header, INode<?> node) Replaces the first childINode
with the given header from the currentIMutableNode
by the givenINode
.Modifizierer und TypMethodeBeschreibungboolean
INode.containsChildNodeThat
(Predicate<INode<?>> selector) INode.getOptionalStoredFirstChildNodeThat
(Predicate<INode<?>> selector) INode.getStoredChildNodesThat
(Predicate<INode<?>> selector) INode.getStoredFirstChildNodeThat
(Predicate<INode<?>> selector) IMutableNode.removeAndGetStoredFirstChildNodeThat
(Predicate<INode<?>> selector) Removes and returns the first childINode
the given selector selects from the currentIMutableNode
.void
IMutableNode.removeFirstChildNodeThat
(Predicate<? extends INode<?>> selector) Removes the first childINode
the given selector selects from the currentIMutableNode
.IMutableNode.setChildNodes
(Iterable<? extends INode<?>> childNodes) Resets the childINode
s of the currentIMutableNode
with the given childNodes. -
Verwendungen von INode in ch.nolix.coreapi.netapi.endpoint3api
Modifizierer und TypMethodeBeschreibungINode
<?> IDataProvider.getDataForRequest
(IChainedNode request) Modifizierer und TypMethodeBeschreibungIContainer
<? extends INode<?>> IDataProvider.getDataForRequests
(IChainedNode request, IChainedNode... requests) IContainer
<? extends INode<?>> IDataProvider.getDataForRequests
(Iterable<? extends IChainedNode> requests) -
Verwendungen von INode in ch.nolix.system.application.main
Modifizierer und TypMethodeBeschreibungprotected final INode
<?> Client.getDataFromCounterpart
(IChainedNode request) protected abstract INode
<?> Client.getDataFromHere
(IChainedNode request) -
Verwendungen von INode in ch.nolix.system.application.webapplication
Modifizierer und TypMethodeBeschreibungprotected INode
<?> WebClient.getDataFromHere
(IChainedNode request) -
Verwendungen von INode in ch.nolix.system.element.base
Modifizierer und TypMethodeBeschreibungfinal INode
<?> Element.getSpecification()
INode
<?> SpecificationCreator.getSpecificationOfElement
(IElement element) INode
<?> StructureSpecificationCreator.getStructureSpecificationOfElement
(IStructureElement element) -
Verwendungen von INode in ch.nolix.system.element.multistateconfiguration
Modifizierer und TypMethodeBeschreibungfinal IContainer
<INode<?>> MultiStateConfiguration.getAttributes()
Modifizierer und TypMethodeBeschreibungfinal boolean
MultiStateConfiguration.addedOrChangedAttribute
(INode<?> attribute) final void
MultiStateConfiguration.addOrChangeAttribute
(INode<?> attribute) protected void
ForwardingProperty.setValueFromSpecification
(INode<?> specification) protected final void
MaterializedProperty.setValueFromSpecification
(INode<?> specification) protected abstract void
Property.setValueFromSpecification
(INode<?> specification) Modifizierer und TypMethodeBeschreibungprotected void
ForwardingProperty.fillUpValuesSpecificationInto
(ILinkedList<INode<?>> list) protected final void
MaterializedProperty.fillUpValuesSpecificationInto
(ILinkedList<INode<?>> list) protected abstract void
Property.fillUpValuesSpecificationInto
(ILinkedList<INode<?>> list) ModifiziererKonstruktorBeschreibungCascadingProperty
(String name, Class<S> stateClass, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator, BiConsumer<S, V> setterMethod, V defaultValue) CascadingProperty
(String name, Class<S> stateClass, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator, V defaultValue) protected
MaterializedProperty
(String name, Class<S> stateClass, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) protected
MaterializedProperty
(String name, Class<S> stateClass, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator, BiConsumer<S, V> setterMethod) NonCascadingProperty
(String name, Class<S> stateClass, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) NonCascadingProperty
(String name, Class<S> stateClass, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator, BiConsumer<S, V> setterMethod) NonCascadingProperty
(String name, Class<S> stateClass, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator, BiConsumer<S, V> setterMethod, V defaultValue) NonCascadingProperty
(String name, Class<S> stateClass, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator, V defaultValue) -
Verwendungen von INode in ch.nolix.system.element.mutableelement
Modifizierer und TypMethodeBeschreibungfinal void
MutableElement.addOrChangeAttribute
(INode<?> attribute) Adds or changes the given attribute to the currentIMutableElement
. -
Verwendungen von INode in ch.nolix.system.element.property
Modifizierer und TypMethodeBeschreibungfinal boolean
BaseExtensionElement.addedOrChangedAttribute
(INode<?> attribute) final boolean
BaseSubElement.addedOrChangedAttribute
(INode<?> attribute) final boolean
BaseValue.addedOrChangedAttribute
(INode<?> attribute) Adds or changes the value from the given attribute to the currentBaseValue
.boolean
CatchingProperty.addedOrChangedAttribute
(INode<?> attribute) boolean
ForwardingMutableValue.addedOrChangedAttribute
(INode<?> attribute) boolean
MultiSpecificationValueExtractor.addedOrChangedAttribute
(INode<?> attribute) boolean
MultiValueExtractor.addedOrChangedAttribute
(INode<?> attribute) boolean
MutableOptionalSpecificationValueExtractor.addedOrChangedAttribute
(INode<?> attribute) boolean
MutableOptionalValueExtractor.addedOrChangedAttribute
(INode<?> attribute) boolean
MutableSpecificationValueExtractor.addedOrChangedAttribute
(INode<?> attribute) boolean
MutableValueExtractor.addedOrChangedAttribute
(INode<?> attribute) Modifizierer und TypMethodeBeschreibungfinal void
BaseExtensionElement.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
BaseSubElement.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
CatchingProperty.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
ForwardingMutableValue.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
MultiSpecificationValueExtractor.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
MultiValue.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
MultiValueExtractor.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
MutableOptionalSpecificationValueExtractor.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
MutableOptionalValueExtractor.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
MutableSpecificationValueExtractor.fillUpAttributesInto
(ILinkedList<INode<?>> list) void
MutableValueExtractor.fillUpAttributesInto
(ILinkedList<INode<?>> list) static <E extends IElement>
MutableOptionalValue<E> MutableOptionalValue.forElement
(String name, Consumer<E> setterMethod, Function<INode<?>, E> valueCreator) ModifiziererKonstruktorBeschreibungForwardingMutableValue
(String name, Consumer<V> setter, Supplier<V> getter, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) MultiSpecificationValueExtractor
(String name, Consumer<INode<?>> adder, Supplier<IContainer<INode<?>>> getter) MultiSpecificationValueExtractor
(String name, Consumer<INode<?>> adder, Supplier<IContainer<INode<?>>> getter) MultiValue
(String name, Consumer<V> adderMethod, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) Creates a newMultiValue
with the given name, valueCreator, adderMethod and specificationCreator.MultiValueExtractor
(String name, Consumer<V> adder, Supplier<IContainer<V>> getter, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) MutableOptionalSpecificationValueExtractor
(String name, Consumer<INode<?>> setter, BooleanSupplier valuePresenceChecker, Supplier<Node> getter) MutableOptionalValue
(String name, Consumer<V> setterMethod, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) Creates a newMutableOptionalValue
with the given name, setterMethod, valueCreator and specificationCreator.MutableOptionalValueExtractor
(String name, Consumer<V> setter, BooleanSupplier valuePresenceChecker, Supplier<V> getter, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) MutableSpecificationValueExtractor
(String name, Consumer<INode<?>> setter, Supplier<INode<?>> getter) MutableSpecificationValueExtractor
(String name, Consumer<INode<?>> setter, Supplier<INode<?>> getter) MutableValue
(String name, V defaultValue, Consumer<V> setterMethod, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) Creates a newMutableValue
with the given name, defaultValue, setterMethod, valueCreator and specificationCreator.MutableValueExtractor
(String name, Consumer<V> setter, Supplier<V> getter, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) OptionalValue
(String name, Consumer<V> setterMethod, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) Creates a newOptionalValue
with the given name, setterMethod, valueCreator and specificationCreator.Value
(String name, Consumer<V> setterMethod, Function<INode<?>, V> valueCreator, Function<V, INode<?>> specificationCreator) Creates a newValue
with the given name, setterMethod, valueCreator and specificationCreator. -
Verwendungen von INode in ch.nolix.system.element.relativevalue
Modifizierer und TypMethodeBeschreibungIContainer
<INode<?>> AbsoluteOrRelativeInt.getAttributes()
Modifizierer und TypMethodeBeschreibungstatic AbsoluteOrRelativeInt
AbsoluteOrRelativeInt.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.system.element.style
Modifizierer und TypMethodeBeschreibungfinal INode
<?> StylableElement.getStructureSpecification()
Modifizierer und TypMethodeBeschreibungfinal IContainer
<INode<?>> BaseSelectingStyle.getAttributes()
IContainer
<INode<?>> Style.getAttributes()
Modifizierer und TypMethodeBeschreibungstatic DeepSelectingStyle
DeepSelectingStyle.fromSpecification
(INode<?> specification) static SelectingStyle
SelectingStyle.fromSpecification
(INode<?> specification) static Style
Style.fromSpecification
(INode<?> specification) ModifiziererKonstruktorBeschreibungStyle
(IContainer<? extends INode<?>> attachingAttributes, IContainer<? extends ISelectingStyleWithSelectors> subStyles) Creates a newStyle
. -
Verwendungen von INode in ch.nolix.system.graphic.color
Modifizierer und TypMethodeBeschreibungIContainer
<INode<?>> Color.getAttributes()
IContainer
<INode<?>> ColorGradient.getAttributes()
Modifizierer und TypMethodeBeschreibungstatic Color
Color.fromSpecification
(INode<?> specification) static ColorGradient
ColorGradient.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.system.graphic.image
Modifizierer und TypMethodeBeschreibungstatic Image
Image.fromSpecification
(INode<?> specification) static MutableImage
MutableImage.fromSpecification
(INode<?> specification) void
MutableImage.setPixelArray
(INode<?> pixelArray) -
Verwendungen von INode in ch.nolix.system.gui.background
Modifizierer und TypMethodeBeschreibungstatic Background
Background.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.system.noderawdata.datareader
Modifizierer und TypMethodeBeschreibungContentFieldDtoMapper.createContentFieldDtoFromContentFieldNode
(INode<?> contentFieldNode, IColumnInfo columnInfo) -
Verwendungen von INode in ch.nolix.system.time.moment
Modifizierer und TypMethodeBeschreibungstatic Time
Time.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.system.webgui.container
Modifizierer und TypMethodeBeschreibungstatic GridCell
GridCell.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.system.webgui.main
Modifizierer und TypMethodeBeschreibungControl
<?, ?> ControlFactory.createControlFromSpecification
(INode<?> specification) static Control
<?, ?> GlobalControlFactory.createControlFromSpecification
(INode<?> specification) static Layer
Layer.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.elementapi.baseapi
Modifizierer und TypMethodeBeschreibungINode
<?> IElement.getSpecification()
INode
<?> IStructureElement.getStructureSpecification()
-
Verwendungen von INode in ch.nolix.systemapi.elementapi.mutableelementapi
Modifizierer und TypMethodeBeschreibungboolean
IRespondingMutableElement.addedOrChangedAttribute
(INode<?> attribute) Adds or changes the given attribute to the currentIRespondingMutableElement
if the given attributes matches.void
IMutableElement.addOrChangeAttribute
(INode<?> attribute) Adds or changes the given attribute to the currentIMutableElement
.default void
IMutableElement.addOrChangeAttribute
(INode<?> attribute, INode<?>... attributes) Adds or changes the given attributes to the currentIMutableElement
.default void
IMutableElement.resetFromSpecification
(INode<?> specification) Resets the currentIMutableElement
from the given specification.Modifizierer und TypMethodeBeschreibungdefault void
IMutableElement.addOrChangeAttributes
(Iterable<? extends INode<?>> attributes) Adds or changes the given attributes to the currentIMutableElement
.default void
IMutableElement.resetFromAttributes
(Iterable<? extends INode<?>> attributes) Resets the currentIMutableElement
from the given attributes. -
Verwendungen von INode in ch.nolix.systemapi.elementapi.propertyapi
Modifizierer und TypMethodeBeschreibungboolean
IProperty.addedOrChangedAttribute
(INode<?> attribute) Modifizierer und TypMethodeBeschreibungvoid
IProperty.fillUpAttributesInto
(ILinkedList<INode<?>> list) -
Verwendungen von INode in ch.nolix.systemapi.elementapi.styleapi
Modifizierer und TypMethodeBeschreibungIContainer
<? extends INode<?>> IBaseStyle.getAttachingAttributes()
-
Verwendungen von INode in ch.nolix.systemapi.graphicapi.imageapi
Modifizierer und TypMethodeBeschreibungstatic ImageApplication
ImageApplication.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.guiapi.backgroundapi
Modifizierer und TypMethodeBeschreibungstatic BackgroundType
BackgroundType.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.guiapi.canvasapi
Modifizierer und TypMethodeBeschreibungstatic DirectionInCanvas
DirectionInCanvas.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.guiapi.contentalignmentproperty
Modifizierer und TypMethodeBeschreibungstatic ContentAlignment
ContentAlignment.fromSpecification
(INode<?> specification) static ExtendedContentAlignment
ExtendedContentAlignment.fromSpecification
(INode<?> specification) static HorizontalContentAlignment
HorizontalContentAlignment.fromSpecification
(INode<?> specification) static VerticalContentAlignment
VerticalContentAlignment.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.guiapi.fontapi
Modifizierer und TypMethodeBeschreibungstatic Font
Font.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.guiapi.guiproperty
Modifizierer und TypMethodeBeschreibungstatic CursorIcon
CursorIcon.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.guiapi.presenceapi
Modifizierer und TypMethodeBeschreibungstatic Presence
Presence.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.guiapi.visibilityapi
Modifizierer und TypMethodeBeschreibungstatic Visibility
Visibility.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.objectdataapi.fieldproperty
Modifizierer und TypMethodeBeschreibungstatic ContentType
ContentType.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.timeapi.timestructureapi
Modifizierer und TypMethodeBeschreibungMonth.fromSpecification
(INode<?> specification) static Weekday
Weekday.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.webguiapi.atomiccontrolapi
Modifizierer und TypMethodeBeschreibungstatic ButtonRole
ButtonRole.fromSpecification
(INode<?> specification) static LabelRole
LabelRole.fromSpecification
(INode<?> specification) static TextMode
TextMode.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.webguiapi.basecontainerapi
Modifizierer und TypMethodeBeschreibungstatic ContainerRole
ContainerRole.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.webguiapi.containerapi
Modifizierer und TypMethodeBeschreibungstatic GridType
GridType.fromSpecification
(INode<?> specification) static TabExpansionBehavior
TabExpansionBehavior.fromSpecification
(INode<?> specification) -
Verwendungen von INode in ch.nolix.systemapi.webguiapi.mainapi
Modifizierer und TypMethodeBeschreibungstatic LayerRole
LayerRole.fromSpecification
(INode<?> specification)