Package model.movie

Examples of model.movie.SearchableObject


  }
 
  @Override
  public boolean contains(Object o) {
    if (o instanceof SearchableObject) {
      SearchableObject s = (SearchableObject) o;
      for (SearchableObject a : this)
        if (a.getUri().equals(s.getUri()))
          return true;
      return false;
    } else return super.contains(o);
  }
View Full Code Here

TOP

Related Classes of model.movie.SearchableObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.