|
From: Alexander P. <dea...@us...> - 2002-06-10 08:31:01
|
Update of /cvsroot/vesuf/vesuf/examples/shape
In directory usw-pr-cvs1:/tmp/cvs-serv24677/examples/shape
Modified Files:
ShapeObjectModel.java
Log Message:
made everything compile again
fixed bugs in text-based choice delegates
Index: ShapeObjectModel.java
===================================================================
RCS file: /cvsroot/vesuf/vesuf/examples/shape/ShapeObjectModel.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ShapeObjectModel.java 4 Feb 2002 10:06:27 -0000 1.3
--- ShapeObjectModel.java 10 Jun 2002 08:30:57 -0000 1.4
***************
*** 90,94 ****
Constraint coa = new Constraint("Circle disabling constraints", model, area);
ConstraintHandler ch = new ConstraintHandler(coa);
! ch.addPropertyValue(IConstraintHandler.CONSTRAINT_ENABLED, "false");
// Establish dependencies for the area.
--- 90,94 ----
Constraint coa = new Constraint("Circle disabling constraints", model, area);
ConstraintHandler ch = new ConstraintHandler(coa);
! ch.addPropertyValue(IConstraintHandler.CONSTRAINT_ACTIVE, "false");
// Establish dependencies for the area.
***************
*** 152,156 ****
Constraint coa = new Constraint("Rectangle disabling constraints", model, area);
ConstraintHandler ch = new ConstraintHandler(coa);
! ch.addPropertyValue(IConstraintHandler.CONSTRAINT_ENABLED, "false");
// Establish dependencies for the area.
--- 152,156 ----
Constraint coa = new Constraint("Rectangle disabling constraints", model, area);
ConstraintHandler ch = new ConstraintHandler(coa);
! ch.addPropertyValue(IConstraintHandler.CONSTRAINT_ACTIVE, "false");
// Establish dependencies for the area.
|