https://hal.archives-ouvertes.fr/hal-02177293
Raw File
Tip revision: a5c3a632ff52caf942ac0457ce1ec733926a867b authored by Software Heritage on 01 January 2004, 00:00:00 UTC
hal: Deposit 315 in collection hal
Tip revision: a5c3a63
InterfaceSection.java
/*
 * Crťť le 6 sept. 2004
 *
 */
package traitement.section;

import gui.InterfaceAffichable;
import principal.copiercoller.InterfaceCollable;
import principal.copiercoller.InterfaceCopiable;
import principal.copiercoller.InterfaceHomonyme;
import traitement.InterfaceTraitement;
import traitement.modele.Modele;

/**
 * ensemble de mťthodes communes ŗ toutes les Sections.
 * 
 * @author	Vincent Labatut
 * @version	1
  */
public interface InterfaceSection extends InterfaceTraitement, InterfaceAffichable, InterfaceHomonyme, InterfaceCopiable, InterfaceCollable 
{
//	----------------------------------------	
//	Modele
//	----------------------------------------
	/*
	 * 
	 */
	public Modele getModele();
}
back to top