Error with JmeBinaryReader

While working my way through theFlagRush tutorial eclipse tells me that "JmeBinaryReader cannot be resolved to a type". The code is cut directly from the tutorial and it seems to work fine for them but I can't seem to be able to figure out why it is not working. Help would be appreciated.  :?



    public static void load(String name, Node rNode){
          
       Node model = null;
       try {
          MaxToJme C1 = new MaxToJme();
          ByteArrayOutputStream BO = new ByteArrayOutputStream();
          URL maxFile = TestProjectedWater.class.getClassLoader().getResource("jmetest/data/model/bike.3ds");
          C1.convert(new BufferedInputStream(maxFile.openStream()),BO);
          JmeBinaryReader jbr = new JmeBinaryReader();
          jbr.setProperty("bound", "box");
          model = jbr.loadBinaryFormat(new ByteArrayInputStream(BO.toByteArray()));
          //scale it to be MUCH smaller than it is originally
          model.setLocalScale(.0025f);
       } catch (IOException e) {
          e.printStackTrace();
       }
    }

the code in the wiki, is mostly based on jme1.

If you work with jme2, use the tutorial code from svn:



http://code.google.com/p/jmonkeyengine/source/browse/#svn/trunk/src/jmetest/flagrushtut