Implement Feature Request [ 1769560 ] Public methods to add and remove posting lines
This commit is contained in:
parent
343acadf87
commit
65f8e8a5e1
|
@ -140,16 +140,25 @@ public final class Fact
|
|||
add(line);
|
||||
return line;
|
||||
} // createLine
|
||||
|
||||
|
||||
/**
|
||||
* Add Fact Line
|
||||
* @param line fact line
|
||||
*/
|
||||
void add (FactLine line)
|
||||
public void add (FactLine line)
|
||||
{
|
||||
m_lines.add(line);
|
||||
} // add
|
||||
|
||||
/**
|
||||
* Remove Fact Line
|
||||
* @param line fact line
|
||||
*/
|
||||
public void remove (FactLine line)
|
||||
{
|
||||
m_lines.remove(line);
|
||||
} // remove
|
||||
|
||||
/**
|
||||
* Create and convert Fact Line.
|
||||
* Used to create either a DR or CR entry
|
||||
|
|
Loading…
Reference in New Issue