test_notwithbindings.drl

来自「jboss规则引擎」· DRL 代码 · 共 11 行

DRL
11
字号
package org.drools;

global java.util.List list;

rule "Hello World"
	when
		$cheese : Cheese ( $type : type )
		not( Cheese ( type == $type ) )
	then
		list.add( $cheese );
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?