InterestPointDAO.java :  » Search » spectacles » com » stromberglabs » visual » ip » dao » Java Open Source

Java Open Source » Search » spectacles 
spectacles » com » stromberglabs » visual » ip » dao » InterestPointDAO.java
package com.stromberglabs.visual.ip.dao;

import com.stromberglabs.visual.ip.creator.InterestPointCreator;

public interface InterestPointDAO {
  /**
   * True if there are already interest points for that file
   */
  public boolean hasInterestPoints(String filename);

  public void saveInterestPoint(float[] point, String filename, int groupId);
  
  public void saveFile(String file, int groupId);
  
  public InterestPointCreator getCreator();
  
  public String getTablePrefix();
}
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.