Class DirectivesDelegateObject
- java.lang.Object
-
- org.eolang.jeo.representation.directives.DirectivesDelegateObject
-
- All Implemented Interfaces:
Iterable<org.xembly.Directive>
public final class DirectivesDelegateObject extends Object implements Iterable<org.xembly.Directive>
Directives for an EO object that delegates to another object.Alternative representations of the same idea: -
DirectivesClosedObject
- a closed object with a base attribute, -DirectivesAbsractObject
- an abstract object with a base attribute,- Since:
- 0.12.0
-
-
Constructor Summary
Constructors Constructor Description DirectivesDelegateObject(String base, String as, String name, Iterable<org.xembly.Directive> internal)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<org.xembly.Directive>
iterator()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
DirectivesDelegateObject
public DirectivesDelegateObject(String base, String as, String name, Iterable<org.xembly.Directive> internal)
Constructor.- Parameters:
base
- The 'base' attribute of the abstract object.as
- The 'as' attribute of the abstract object.name
- The 'name' attribute of the abstract object.internal
- Inner components of the abstract object.- Suppressed Checkstyle violations:
- ParameterNameCheck (5 lines), ParameterNumberCheck (5 lines)
-
-