Update of /cvsroot/nice/Nice/src/bossa/syntax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27412/src/bossa/syntax
Modified Files:
Pattern.java
Log Message:
Improve the encapsulation of bossa.syntax.Pattern
Index: Pattern.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/syntax/Pattern.java,v
retrieving revision 1.80
retrieving revision 1.81
diff -C2 -d -r1.80 -r1.81
*** Pattern.java 25 Feb 2004 11:23:28 -0000 1.80
--- Pattern.java 28 Feb 2004 12:26:05 -0000 1.81
***************
*** 112,115 ****
--- 112,120 ----
}
+ public final TypeConstructor getTC()
+ {
+ return tc;
+ }
+
final TypeConstructor getRuntimeTC()
{
***************
*** 821,826 ****
LocatedString name,refName;
! TypeIdent typeConstructor, additional;
! public TypeConstructor tc;
TypeConstructor tc2;
private TypeConstructor runtimeTC;
--- 826,831 ----
LocatedString name,refName;
! private TypeIdent typeConstructor, additional;
! TypeConstructor tc;
TypeConstructor tc2;
private TypeConstructor runtimeTC;
|