Class BuildInfo
- java.lang.Object
-
- jadex.rules.rulesystem.rete.builder.BuildInfo
-
public class BuildInfo extends java.lang.Object
The build info per rule.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IRule
getRule()
Get the rule.long
getTime()
Get the time.java.lang.String
toString()
Get the string representation.
-
-
-
Field Detail
-
rule
protected IRule rule
The rule.
-
time
protected long time
The buildtime.
-
-
Constructor Detail
-
BuildInfo
public BuildInfo(IRule rule, long time)
Create a new build info.
-
-
Method Detail
-
getRule
public IRule getRule()
Get the rule.- Returns:
- The rule.
-
getTime
public long getTime()
Get the time.- Returns:
- The time.
-
toString
public java.lang.String toString()
Get the string representation.- Overrides:
toString
in classjava.lang.Object
- Returns:
- The string representation.
-
-