MultipleMatchModel.java :  » Database-Client » SQLMinus » util » Java Open Source

Java Open Source » Database Client » SQLMinus 
SQLMinus » util » MultipleMatchModel.java
package util;
public interface MultipleMatchModel {

    public void setValueAt (String str, int row, int group);

    /** this will return value at the given offset, if this is
     * applicable, else return null. e.g. for a hashtable this would
     * mean nothing.
     */
    public String getValueAt (int row, int group);

    /** this was put to return the collection since we dont know what
     * kinda object we have in here. You can get and then manipulate
     * as is. This could also have been a getObject.
     */
    public Object getObject ();
}

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.