Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Codeblock
languagehtml/xml
titleThe following example shows an action with a visual event
<javaActionImpl className="com.mypackage.myClass">
<param name="name1" type="String">my String<param/>
</javaActionImpl> 

Hinweis

The parameters are used to find an according constructor in your action implementation class. In the case above the must be a constructor with on string parameter value:

Codeblock
themeEclipse
languagejava
linenumberstrue
package com.mypackage
import com.jaxfront.core.rule.Action;

public class MyClass implements Action
	public MyClass(String anyString) {
		
	}
}