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

javax.jmi.reflect.RefAssociation Maven / Gradle / Ivy

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

import java.util.Collection;

@SuppressWarnings("rawtypes")
public interface RefAssociation extends RefBaseObject {
    public Collection refAllLinks();
    public boolean refLinkExists(RefObject firstEnd, RefObject secondEnd);
    public Collection refQuery(RefObject queryEnd, RefObject queryObject);
    public Collection refQuery(String endName, RefObject queryObject);
    public boolean refAddLink(RefObject firstEnd, RefObject secondEnd);
    public boolean refRemoveLink(RefObject firstEnd, RefObject secondEnd);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy