HelpWizard Pages Linking Technologies4/en: Unterschied zwischen den Versionen

Aus expecco Wiki (Version 2.x)
Zur Navigation springen Zur Suche springen
 
Zeile 4: Zeile 4:
[[Datei:arrowright.png|link=HelpWizard Pages Linking Technologies4b/en|forward]]
[[Datei:arrowright.png|link=HelpWizard Pages Linking Technologies4b/en|forward]]


In a similar way, we can talk to a Java program/function/library via Groovy. Any JAR or class file can be imported via the class-path which is configured in the settings dialog.
In a similar way, we can talk to a [[Expecco_API/en#Groovy_Elementary_Blocks|Java program/function/library via Groovy]]. Any JAR or class file can be imported via the class-path which is configured in the settings dialog.


def calledFunction(Object someList) {
def calledFunction(Object someList) {

Aktuelle Version vom 19. März 2022, 07:41 Uhr

Linking Technologies: Java Actions

back forward

In a similar way, we can talk to a Java program/function/library via Groovy. Any JAR or class file can be imported via the class-path which is configured in the settings dialog.

def calledFunction(Object someList) {
    return someList.toString();
}

def execute() {
    Object myList = new ArrayList();

    myList.add(in1.value());
    out1.value(calledFunction(myList));
}

And this can also be connected into the sequence (you got the idea). Thus, any piece of code or binary library can be brought into you suite within seconds. No matter if it was found in-house or in open-source/public repositories, or it was written by you or will be written in the future.



Copyright © 2014-2024 eXept Software AG