changes to reflact renaming helma.objectmodel.Node to

TransientNode
This commit is contained in:
hns 2001-08-20 14:49:55 +00:00
parent ea444d4f4a
commit 225751ec18

View file

@ -19,7 +19,7 @@ public final class Property implements IProperty, Serializable, Cloneable {
protected String propname; protected String propname;
protected Node node; protected TransientNode node;
public String svalue; public String svalue;
public boolean bvalue; public boolean bvalue;
@ -31,11 +31,11 @@ public final class Property implements IProperty, Serializable, Cloneable {
public int type; public int type;
public Property (Node node) { public Property (TransientNode node) {
this.node = node; this.node = node;
} }
public Property (String propname, Node node) { public Property (String propname, TransientNode node) {
this.propname = propname; this.propname = propname;
this.node = node; this.node = node;
} }