added import statement for DbMapping
This commit is contained in:
parent
4174c3ebbd
commit
ea444d4f4a
1 changed files with 1 additions and 1 deletions
|
@ -6,6 +6,7 @@ package helma.objectmodel;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import helma.framework.IPathElement;
|
import helma.framework.IPathElement;
|
||||||
|
import helma.objectmodel.db.DbMapping;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface that all Nodes implement. Currently, there are two implementations:
|
* Interface that all Nodes implement. Currently, there are two implementations:
|
||||||
|
@ -22,7 +23,6 @@ public interface INode extends INodeState, IPathElement {
|
||||||
|
|
||||||
public String getID ();
|
public String getID ();
|
||||||
public String getName ();
|
public String getName ();
|
||||||
// public String get (); // get name or id depending if it's a named or an anonymous node.
|
|
||||||
public void setDbMapping (DbMapping dbmap);
|
public void setDbMapping (DbMapping dbmap);
|
||||||
public DbMapping getDbMapping ();
|
public DbMapping getDbMapping ();
|
||||||
public int getState ();
|
public int getState ();
|
||||||
|
|
Loading…
Add table
Reference in a new issue