/* * Created on Mar 17, 2005 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package fr.lifl.stc.stan.policy; import java.util.Hashtable; /** * @author dorina * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public interface ClassPolicy { public int findAttribute(String attribute); void add(String attr); public String getClassName(); public void addSuperClass(ClassPolicy c); public void addSuperClasses(Hashtable c); public Hashtable getSuperClasses(); public boolean hasSuperClass(String className); }