work
This commit is contained in:
parent
2ed32a94a4
commit
cf57ac1a1b
8 changed files with 39 additions and 10 deletions
|
|
@ -34,4 +34,9 @@ public class ChtijbugHistoryListener implements HistoryListener {
|
|||
public boolean withDetails() {
|
||||
return withDetails;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
withDetails = details;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,4 +33,8 @@ public class TestHistoryListener implements HistoryListener {
|
|||
public boolean withDetails() {
|
||||
return withDetails;
|
||||
}
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
withDetails = details;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,7 +39,9 @@ public class RuleBaseStatefulSessionTestCase {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -39,7 +39,9 @@ public class FactHistoryEventTest {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
historyEvents.add(newHistoryEvent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
@ -138,7 +140,9 @@ public class FactHistoryEventTest {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
historyEvents.add(newHistoryEvent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -42,7 +42,9 @@ public class KnowledgeBaseHistoryEventTest {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
historyEvents.add(newHistoryEvent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
@ -86,7 +88,9 @@ public class KnowledgeBaseHistoryEventTest {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
historyEvents.add(newHistoryEvent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
@ -155,7 +159,9 @@ public class KnowledgeBaseHistoryEventTest {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
historyEvents.add(newHistoryEvent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -41,7 +41,9 @@ public class RuleBaseHistoryEventTest {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
historyEvents.add(newHistoryEvent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -45,7 +45,9 @@ public class RuleHistoryEventTest {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
historyEvents.add(newHistoryEvent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
@ -90,7 +92,9 @@ public class RuleHistoryEventTest {
|
|||
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
|
||||
historyEvents.add(newHistoryEvent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDetails(Boolean details) {
|
||||
}
|
||||
@Override
|
||||
public boolean withDetails() {
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -27,4 +27,6 @@ public interface HistoryListener extends Serializable {
|
|||
|
||||
public boolean withDetails();
|
||||
|
||||
public void setDetails(Boolean details);
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
editor.link_modal.header
Reference in a new issue