[Nodal-cvs] nodal/j-src/org/nodal/implementation/types RestrictionTypeImpl.java,1.20,1.21
Status: Pre-Alpha
Brought to you by:
leei
From: Lee I. <le...@us...> - 2004-12-09 19:05:32
|
Update of /cvsroot/nodal/nodal/j-src/org/nodal/implementation/types In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6400/org/nodal/implementation/types Modified Files: RestrictionTypeImpl.java Log Message: Disambiguate Editor to RestrictionType.Editor Index: RestrictionTypeImpl.java =================================================================== RCS file: /cvsroot/nodal/nodal/j-src/org/nodal/implementation/types/RestrictionTypeImpl.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** RestrictionTypeImpl.java 12 Nov 2004 19:23:24 -0000 1.20 --- RestrictionTypeImpl.java 9 Dec 2004 19:05:22 -0000 1.21 *************** *** 102,106 **** private RecordNode record; ! private Editor editor; /** --- 102,106 ---- private RecordNode record; ! private RestrictionType.Editor editor; /** *************** *** 462,466 **** } ! public Editor edit() { if (editor == null) { editor = new MyEditor(this); --- 462,466 ---- } ! public RestrictionType.Editor edit() { if (editor == null) { editor = new MyEditor(this); *************** *** 471,475 **** private static final class MyEditor extends TypeEditorUtil ! implements Editor { private RestrictionTypeImpl type; --- 471,475 ---- private static final class MyEditor extends TypeEditorUtil ! implements RestrictionType.Editor { private RestrictionTypeImpl type; *************** *** 489,493 **** return type.restrictions(); } ! public Editor edit() { return this; } --- 489,493 ---- return type.restrictions(); } ! public RestrictionType.Editor edit() { return this; } |