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