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

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

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

import java.util.List;

@SuppressWarnings("rawtypes")
public interface RefFeatured extends RefBaseObject {
    public void refSetValue(RefObject feature, Object value);
    public void refSetValue(String featureName, Object value);
    public Object refGetValue(RefObject feature);
    public Object refGetValue(String featureName);
    public Object refInvokeOperation(RefObject requestedOperation, List args) throws RefException;
    public Object refInvokeOperation(String requestedOperation, List args) throws RefException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy