Uses of Class
edu.wpi.ebob.model.cm.RemoteException

Packages that use RemoteException
edu.wpi.ebob.internal.jem   
edu.wpi.ebob.internal.jem.operations   
edu.wpi.ebob.model.cm   
edu.wpi.ebob.wizards   
 

Uses of RemoteException in edu.wpi.ebob.internal.jem
 

Subclasses of RemoteException in edu.wpi.ebob.internal.jem
 class JEMRemoteException
          Represents an exception thrown on a JEM remote JVM.
 

Methods in edu.wpi.ebob.internal.jem that throw RemoteException
 IObject JEMArray.get(int index)
           
 IObject JEMField.get(IObject obj)
           
 IConstructor[] JEMClass.getConstructors()
           
 IField[] JEMClass.getDeclaredFields()
           
 IMethod JEMClass.getMethod(java.lang.String name, IClass[] parameterTypes)
           
 IMethod[] JEMClass.getMethods()
           
private  int JEMMember.getModifiers()
          Retrieves the modifiers which are used by the other methods.
 java.lang.String JEMMember.getName()
           
 IClass[] JEMConstructor.getParameterTypes()
           
 IObject JEMMethod.invoke(IObject obj, IObject[] args)
           
 boolean JEMMember.isAbstract()
           
 boolean JEMMember.isFinal()
           
 boolean JEMMember.isPrivate()
           
 boolean JEMMember.isProtected()
           
 boolean JEMMember.isPublic()
           
 boolean JEMMember.isStatic()
           
 boolean JEMMember.isSynchronized()
           
 IObject JEMClass.newInstance()
           
 IObject JEMConstructor.newInstance(IObject[] initargs)
           
 IObject JEMClassManager.performAdditionOperation(IObject left, IObject right)
          Performs left + right.
 IObject JEMClassManager.performAlgebraicNegationOperation(IObject operand)
           
 IObject JEMClassManager.performBooleanNegationOperation(IObject operand)
           
 IObject JEMClassManager.performDivisionOperation(IObject left, IObject right)
          Performs left / right.
 IObject JEMClassManager.performModulusOperation(IObject left, IObject right)
          Performs left % right.
 IObject JEMClassManager.performMultiplicationOperation(IObject left, IObject right)
          Performs left * right.
 IObject JEMClassManager.performOperation(IOperation op, IObject[] args)
          performs the given operation with the given arguments.
 IObject JEMClassManager.performSubtractionOperation(IObject left, IObject right)
          Performs left - right.
 IArray JEMClassManager.resolveArray(IClass type, IObject[] elements)
           
 IObject JEMClassManager.resolveObject(IClass returnType, java.lang.String expression)
          Returns an object of type returnType based on the given expression, if such an expression can resolve to that returnType.
 void JEMArray.set(IObject value, int index)
           
 void JEMField.set(IObject obj, IObject value)
           
 

Uses of RemoteException in edu.wpi.ebob.internal.jem.operations
 

Methods in edu.wpi.ebob.internal.jem.operations that throw RemoteException
 IObject JEMSubtractionOperation.performOperation(IClassManager cm, IObject[] args)
          This is the same as args[0] - args[1].
 IObject JEMMultiplicationOperation.performOperation(IClassManager cm, IObject[] args)
          This is the same as args[0] * args[1].
 IObject JEMModulusOperation.performOperation(IClassManager cm, IObject[] args)
          This is the same as args[0] % args[1].
 IObject JEMDivisionOperation.performOperation(IClassManager cm, IObject[] args)
          This is the same as args[0] / args[1].
 IObject JEMBooleanNegationOperation.performOperation(IClassManager cm, IObject[] args)
          This is the same as args[0] + args[1].
 IObject JEMAlgebraicNegationOperation.performOperation(IClassManager cm, IObject[] args)
          This is the same as args[0] + args[1].
 IObject JEMAdditionOperation.performOperation(IClassManager cm, IObject[] args)
          This is the same as args[0] + args[1].
protected  IObject JEMAbstractPrefixOperation.performOperation(IClassManager cm, IObject[] args, int operator)
           
protected  IObject JEMAbstractInfixOperation.performOperation(IClassManager cm, IObject[] args, int operator)
          Performs operation operator on arguments args.
 

Uses of RemoteException in edu.wpi.ebob.model.cm
 

Methods in edu.wpi.ebob.model.cm that throw RemoteException
 IObject IArray.get(int index)
           
 IObject IField.get(IObject obj)
           
 IConstructor[] IClass.getConstructors()
           
 IField[] IClass.getDeclaredFields()
           
 IMethod IClass.getMethod(java.lang.String name, IClass[] parameterTypes)
           
 IMethod[] IClass.getMethods()
           
 java.lang.String IMember.getName()
           
 IClass[] IConstructor.getParameterTypes()
           
 IObject IMethod.invoke(IObject obj, IObject[] args)
           
 boolean IMember.isAbstract()
           
 boolean IMember.isFinal()
           
 boolean IMember.isPrivate()
           
 boolean IMember.isProtected()
           
 boolean IMember.isPublic()
           
 boolean IMember.isStatic()
           
 boolean IMember.isSynchronized()
           
 IObject IClass.newInstance()
           
 IObject IConstructor.newInstance(IObject[] initargs)
           
 IObject IClassManager.performAdditionOperation(IObject left, IObject right)
          Performs left + right.
 IObject IClassManager.performAlgebraicNegationOperation(IObject operand)
          Performs -operand.
 IObject IClassManager.performBooleanNegationOperation(IObject operand)
          Performs !operand.
 IObject IClassManager.performDivisionOperation(IObject left, IObject right)
          Performs left / right.
 IObject IClassManager.performModulusOperation(IObject left, IObject right)
          Performs left % right.
 IObject IClassManager.performMultiplicationOperation(IObject left, IObject right)
          Performs left * right.
 IObject IOperation.performOperation(IClassManager cm, IObject[] args)
           
 IObject IClassManager.performOperation(IOperation op, IObject[] args)
          performs the given operation with the given arguments.
 IObject IClassManager.performSubtractionOperation(IObject left, IObject right)
          Performs left - right.
 IArray IClassManager.resolveArray(IClass type, IObject[] elements)
          Returns an array object using the IArray form.
 IObject IClassManager.resolveObject(IClass type, java.lang.String expression)
          Returns an object of type returnType based on the given expression, if such an expression can resolve to that returnType.
 void IArray.set(IObject value, int index)
           
 void IField.set(IObject obj, IObject value)
           
 

Uses of RemoteException in edu.wpi.ebob.wizards
 

Methods in edu.wpi.ebob.wizards that throw RemoteException
private  void AddToObjectBenchWizard.doFinish(java.lang.String instanceName, IConstructor constructor, IObject[] args, org.eclipse.core.runtime.IProgressMonitor monitor)
          The worker method.