TodoIdSpecification.java :  » UnTagged » more-than-enough » com » boodaba » todocarts » domain » Android Open Source

Android Open Source » UnTagged » more than enough 
more than enough » com » boodaba » todocarts » domain » TodoIdSpecification.java
package com.boodaba.todocarts.domain;

import com.boodaba.todocarts.infstr.ISpecification;

public class TodoIdSpecification extends DbtIdSpecification<Todo> implements ISpecification<Todo> {

  public TodoIdSpecification(String targetTitle) {
    super(targetTitle);
  }
  
  public TodoIdSpecification(Todo targetTodo) {
    super(targetTodo);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.