I\'ve been struggling with my first regex. During the compile, Pattern
and Matcher
kept getting cannot find symbol
errors.
I j
Yes, that is how package imports work (and are supposed to work) in Java. For example, doing import javax.swing.*;
will import all classes within javax.swing.*
but not sub-packages and their classes.
Ergo, javax.swing.*
will not import javax.swing.event
or javax.swing.event.*
Read the following blog for some friendly newbie advice.