[
https://issues.jboss.org/browse/DROOLS-1411?page=com.atlassian.jira.plugi...
]
Matteo Mortari commented on DROOLS-1411:
----------------------------------------
Missing test class:
{code:java}
package org.drools.compiler.xpath;
public class TMFileWithParentObj extends TMFile {
private long id;
private Object parent;
public TMFileWithParentObj(long id, String name, int size, Object parent) {
super(name, size);
this.id = id;
this.parent = parent;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public Object getParent() {
return parent;
}
public void setParent(Object parent) {
this.parent = parent;
}
}
{code}
OOPath constraint bugs emerged during dogfooding
------------------------------------------------
Key: DROOLS-1411
URL:
https://issues.jboss.org/browse/DROOLS-1411
Project: Drools
Issue Type: Bug
Reporter: Matteo Mortari
Assignee: Matteo Mortari
Misc OOPath constraint bugs emerged during dogfooding using in DMN Validation rules
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)