Java 类com.vmware.vim25.OutOfBounds 实例源码

项目:photon-model    文件:ObjectFactory.java   
/**
 * Create an instance of {@link JAXBElement }{@code <}{@link OutOfBounds }{@code >}}
 * 
 */
@XmlElementDecl(namespace = "urn:pbm", name = "OutOfBoundsFault")
public JAXBElement<OutOfBounds> createOutOfBoundsFault(OutOfBounds value) {
    return new JAXBElement<OutOfBounds>(_OutOfBoundsFault_QNAME, OutOfBounds.class, null, value);
}
项目:vijava    文件:Task.java   
public void updateProgress(int percentDone) throws InvalidState, OutOfBounds, RuntimeFault, RemoteException 
{
    getVimService().updateProgress(getMOR(), percentDone);
}