~quizsilver/quizsilver/trunk

« back to all changes in this revision

Viewing changes to src/db/ModifyStrategy.java

  • Committer: student
  • Date: 2009-12-09 08:08:47 UTC
  • Revision ID: student-20091209080847-vfln2ga12zdx71yv
we added modify, modify controller, modify strategy

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * To change this template, choose Tools | Templates
 
3
 * and open the template in the editor.
 
4
 */
 
5
 
 
6
package db;
 
7
 
 
8
/**
 
9
 *
 
10
 * @author joc and chico
 
11
 */
 
12
public abstract class ModifyStrategy {
 
13
 
 
14
   public abstract void ModifyFolderTable (String primaryKey, String pFolder);
 
15
   public abstract void ModifyQuestionsTable (int primaryKey, String question, String answer, String difficulty);
 
16
   public abstract void ModifyUserAccountTable (int primaryKey, String username, String password, String type);
 
17
   public abstract void ModifyUserRolesTable (int primaryKey, String role);
 
18
 
 
19
}