Class DirectivesClass
java.lang.Object
org.eolang.jeo.representation.directives.DirectivesClass
- All Implemented Interfaces:
Iterable<org.xembly.Directive>
Directives for generating EO class objects.
This class generates Xembly directives to create EO object representations of Java classes, including their properties, fields, methods, annotations, and attributes.
- Since:
- 0.1.0
-
Constructor Summary
ConstructorsConstructorDescriptionDirectivesClass(String classname, DirectivesClassProperties properties) Constructor.DirectivesClass(ClassName name) Constructor.DirectivesClass(ClassName name, DirectivesClassProperties properties, List<DirectivesField> fields, List<DirectivesMethod> methods, DirectivesAnnotations annotations, DirectivesAttributes attributes) Constructor.DirectivesClass(ClassName name, DirectivesMethod method) Constructor. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
DirectivesClass
Constructor.- Parameters:
name- The class name
-
DirectivesClass
Constructor.- Parameters:
classname- The class nameproperties- The class properties
-
DirectivesClass
Constructor.- Parameters:
name- The class namemethod- The method to include
-
DirectivesClass
public DirectivesClass(ClassName name, DirectivesClassProperties properties, List<DirectivesField> fields, List<DirectivesMethod> methods, DirectivesAnnotations annotations, DirectivesAttributes attributes) Constructor.- Parameters:
name- The class nameproperties- The class propertiesfields- The class fieldsmethods- The class methodsannotations- The annotationsattributes- The attributes
-
-
Method Details