changes to reflact renaming helma.objectmodel.Node to
TransientNode
This commit is contained in:
parent
ea444d4f4a
commit
225751ec18
1 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ public final class Property implements IProperty, Serializable, Cloneable {
|
|||
|
||||
|
||||
protected String propname;
|
||||
protected Node node;
|
||||
protected TransientNode node;
|
||||
|
||||
public String svalue;
|
||||
public boolean bvalue;
|
||||
|
@ -31,11 +31,11 @@ public final class Property implements IProperty, Serializable, Cloneable {
|
|||
public int type;
|
||||
|
||||
|
||||
public Property (Node node) {
|
||||
public Property (TransientNode node) {
|
||||
this.node = node;
|
||||
}
|
||||
|
||||
public Property (String propname, Node node) {
|
||||
public Property (String propname, TransientNode node) {
|
||||
this.propname = propname;
|
||||
this.node = node;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue