CS计算机代考程序代写 package it.polito.oop.futsal;

package it.polito.oop.futsal;

/**
* Represents an option for a field
* available at a given time
*
*/
public interface FieldOption {

/**
* retrieves the field number
* @return table number
*/
public int getField();

/**
* retrieves the field occupation.
*
*
* @return table occupation
*/
public int getOccupation();

}