/*
* Created on Nov 20, 2004
*/
/**
* @author Evren Sirin
* @author Michael D�nzer (University of Zurich)
*/
public boolean isEnumerated();
/**
* Returns the instance properties at class defintion. Use <code>getDeclaredProperties()</code>
* whenever you need the declared properties of an OWL class
*
* @return a map with all instance properties at class definition
*/
/**
* Returns all declared properties of a class. Use <code>getProperties()</code>
* whenever you need the instance properties of an OWL class. Convenience method for
* <code>getDeclaredProperties(true)</code>
*
* @return a map with all instance properties at class definition
*/
/**
* Returns all declared properties of a class. Use <code>getProperties()</code>
* whenever you need the instance properties of an OWL class
*
* @param direct true, if only properties of the given class itself should be returned. false, if properties of superclasses should be returned too
* @return a map with all instance properties at class definition
*/
}