Uses of Class
edu.rit.m2mi.Eoid

Packages that use Eoid
edu.rit.m2mi Package edu.rit.m2mi is the API for Many-to-Many Invocation (M2MI). 
edu.rit.slides Package edu.rit.slides contains Slides, a service and collaborative application based on Many-to-Many Invocation (M2MI). 
edu.rit.survey Package edu.rit.survey contains Survey, an ad hoc collaborative application for an online survey based on Many-to-Many Invocation (M2MI). 
 

Uses of Eoid in edu.rit.m2mi
 

Fields in edu.rit.m2mi declared as Eoid
protected  Eoid Invocation.myEoid
          Exported object identifier.
protected  Eoid Handle.myEoid
          Exported object identifier (EOID).
static Eoid Eoid.WILDCARD
          The wildcard EOID.
 

Methods in edu.rit.m2mi that return Eoid
 Eoid Handle.getEoid()
          Returns this handle's exported object identifier (EOID).
 Eoid Eoid.increment()
          Generate the next EOID after this EOID.
static Eoid Eoid.max(Eoid eoid1, Eoid eoid2)
          Determine the larger of the two given EOIDs.
static Eoid Eoid.min(Eoid eoid1, Eoid eoid2)
          Determine the smaller of the two given EOIDs.
static Eoid Eoid.next()
          Generate the next EOID in the series of generated EOIDs.
 

Methods in edu.rit.m2mi with parameters of type Eoid
 void EoidExportMap.export(Eoid eoid, Object obj)
          Export the given object with the given EOID in this export map.
static byte[] M2MIMessagePrefix.getMessagePrefix(Eoid theEoid)
          Obtain the M2MP message prefix for the given EOID.
protected  boolean EoidExportMap.isExported(Eoid eoid)
          Determine if any object(s) are exported with the given EOID in this export map.
 boolean EoidExportMap.isExported(Eoid eoid, Object obj)
          Determine if the given object is exported with the given EOID in this export map.
 Iterator EoidExportMap.iterator(Eoid eoid)
          Obtain an iterator for visiting the objects exported with the given EOID in this export map.
static Eoid Eoid.max(Eoid eoid1, Eoid eoid2)
          Determine the larger of the two given EOIDs.
static Eoid Eoid.min(Eoid eoid1, Eoid eoid2)
          Determine the smaller of the two given EOIDs.
 Invocation UniInvocationFactory.newInvocation(Eoid theEoid, MethodDescriptor theMethodDescriptor, MethodInvoker theMethodInvoker)
          Create a new unihandle invocation object with the given EOID, method descriptor, and method invoker.
 Invocation MultiInvocationFactory.newInvocation(Eoid theEoid, MethodDescriptor theMethodDescriptor, MethodInvoker theMethodInvoker)
          Create a new multihandle invocation object with the given EOID, method descriptor, and method invoker.
 Invocation OmniInvocationFactory.newInvocation(Eoid theEoid, MethodDescriptor theMethodDescriptor, MethodInvoker theMethodInvoker)
          Create a new omnihandle invocation object with the given EOID, method descriptor, and method invoker.
abstract  Invocation InvocationFactory.newInvocation(Eoid theEoid, MethodDescriptor theMethodDescriptor, MethodInvoker theMethodInvoker)
          Create a new invocation object with the given EOID, method descriptor, and method invoker.
protected  void Handle.setEoid(Eoid theEoid)
          Set this handle's EOID.
 void EoidExportMap.unexport(Eoid eoid, Object obj)
          Unexport the given object from the given EOID in this export map.
 void EoidExportMap.unexportEoid(Eoid eoid)
          Unexport all objects from the given EOID in this export map.
 

Constructors in edu.rit.m2mi with parameters of type Eoid
Invocation(Eoid theEoid, MethodDescriptor theMethodDescriptor, MethodInvoker theMethodInvoker)
          Construct a new invocation object with the given EOID, method descriptor, and method invoker.
Multihandle(Eoid theEoid, Class theTargetInterface)
          Construct a new multihandle with the given EOID and target interface.
MultiInvocation(Eoid theEoid, MethodDescriptor theMethodDescriptor, MethodInvoker theMethodInvoker)
          Construct a new multihandle invocation object with the given EOID, method descriptor, and method invoker.
Omnihandle(Eoid theEoid, Class theTargetInterface)
          Construct a new omnihandle with the given EOID and target interface.
OmniInvocation(Eoid theEoid, MethodDescriptor theMethodDescriptor, MethodInvoker theMethodInvoker)
          Construct a new omnihandle invocation object with the given EOID, method descriptor, and method invoker.
Unihandle(Eoid theEoid, Class theTargetInterface)
          Construct a new unihandle with the given EOID and target interface.
UniInvocation(Eoid theEoid, MethodDescriptor theMethodDescriptor, MethodInvoker theMethodInvoker)
          Construct a new unihandle invocation object with the given EOID, method descriptor, and method invoker.
 

Uses of Eoid in edu.rit.slides
 

Methods in edu.rit.slides that return Eoid
 Eoid[] SlideShow.getSlideGroup(int index)
          Obtain the slide group at the given index in this slide show.
 Eoid SlideDescriptor.getSlideID()
          Obtain this slide descriptor's slide ID.
 Eoid[] SlideShow.getSlideIDs()
          Obtain the slide IDs of all the slides in this slide show.
 

Methods in edu.rit.slides with parameters of type Eoid
 void ScreenObject.availableSlides(Projector theProjector, Eoid[] theSlideIDs)
          Notify this screen that a projector has the given slides available.
 void Screen.availableSlides(Projector theProjector, Eoid[] theSlideIDs)
          Notify this screen that a projector has the given slides available.
 void ScreenObject.displaySlides(Projector theProjector, Eoid[] theSlideIDs)
          Display the given slides on this screen.
 void Screen.displaySlides(Projector theProjector, Eoid[] theSlideIDs)
          Display the given slides on this screen.
 Slide SlideShow.getSlide(Eoid theSlideID)
          Obtain the slide with the given slide ID in this slide show.
 void ProjectorObject.getSlide(Eoid theSlideID)
          Get the given slide from this projector.
 void Projector.getSlide(Eoid theSlideID)
          Get the given slide from this projector.
 void ScreenObject.putSlide(Projector theProjector, Eoid theSlideID, Slide theSlide)
          Provide a slide from the given projector to this screen.
 void Screen.putSlide(Projector theProjector, Eoid theSlideID, Slide theSlide)
          Provide a slide from the given projector to this screen.
 

Constructors in edu.rit.slides with parameters of type Eoid
SlideDescriptor(Projector theProjector, Eoid theSlideID)
          Construct a new slide descriptor.
 

Uses of Eoid in edu.rit.survey
 

Methods in edu.rit.survey with parameters of type Eoid
 SurveyVote SurveyState.getSurveyVote(Eoid id)
          Get the survey vote object for the given participant ID in this survey state object.
 void SurveyState.setSurveyVote(Eoid id, SurveyVote theSurveyVote)
          Set the survey vote object for the given participant ID in this survey state object.
 



Copyright © 2001-2006 by Alan Kaminsky. All rights reserved. Send comments to ark­@­cs.rit.edu.