All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.jmi.model.GeneralizableElement Maven / Gradle / Ivy

There is a newer version: 2.18.10
Show newest version
package javax.jmi.model;

import javax.jmi.reflect.*;

@SuppressWarnings({"rawtypes","unused"})
public interface GeneralizableElement extends Namespace {
    public java.util.List allSupertypes();
    public ModelElement lookupElementExtended(String name) throws NameNotFoundException;
    public java.util.List findElementsByTypeExtended(MofClass ofType, boolean includeSubtypes);
    public boolean isRoot();
    public void setRoot(boolean newValue);
    public boolean isLeaf();
    public void setLeaf(boolean newValue);
    public boolean isAbstract();
    public void setAbstract(boolean newValue);
    public VisibilityKind getVisibility();
    public void setVisibility(VisibilityKind newValue);
    public java.util.List getSupertypes();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy