view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/operations/Operation.java @ 16:35c661de095d

added Parameter ... etc..
author Shoshi TAMAKI
date Wed, 19 Dec 2012 23:20:00 +0900
parents
children 6723c88cf525
line wrap: on
line source

package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.operations;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.Command;

public interface Operation
{
	public Command getCommand();
	public ? getParameter(Parameter<?> _param);
}