On 9/5/06, Sumit Gupta <[EMAIL PROTECTED]> wrote:
Hi,

 I had following four errors while compiling nesc-1.2.7 package. When I gave
make command, I got following errors in the end. Can anyone help me in
removing them?

 ava Xvariables.java Xwire.java Xwiring.java
 Location.java: In class
`net.tinyos.nesc.dump.xml.Location':
 Location.java: In method
`net.tinyos.nesc.dump.xml.Location.decode(java.lang.String)':
 Location.java:54: error: Can't find method `matches()' in type
`java.util.regex.Matcher'.
         if (!m.matches())
                  ^
 Location.java:58: error: Can't find method `group(I)' in type
`java.util.regex.Matcher'.
         String numS = m.group(1);
                           ^
 Location.java:59: error: Can't find method `group(I)' in type
`java.util.regex.Matcher'.
         String instance = m.group(2);
                               ^
 Location.java:60: error: Can't find method `group(I)' in type
`java.util.regex.Matcher'.
         String filename = m.group(3);
                               ^
 4 errors

These are standard methods of the java.util.regex.Matcher class.
Offhand, you either don't have Java 1.4 (or later), or you have an
incomplete java class library.

David Gay
_______________________________________________
Tinyos-help mailing list
[email protected]
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Reply via email to