FieldParser.java :  » Game » textadventure » streambolics » core » Android Open Source

Android Open Source » Game » textadventure 
textadventure » streambolics » core » FieldParser.java
package streambolics.core;

public abstract class FieldParser<T>
{
    public abstract void setValue (T aObject, String aValue);

    public abstract String getValue (T aObject);

    public boolean isValue (T aObject, String aValue)
    {
        return getValue (aObject).equals (aValue);
    }
}
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.