Package com.jitcaforwin.main.exceptions

Examples of com.jitcaforwin.main.exceptions.ObjectTypeNotSupported


    } else if (o instanceof DispatchObject) {
      return new Variant(((DispatchObject) o).getDispatch());
    } else if (o instanceof Double) {
      return new Variant((Double) o);
    } else {
      throw new ObjectTypeNotSupported(o.getClass().toString(),
          "Integer, Long, String, Boolean, DispatchObject, Double");
    }
  }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.main.exceptions.ObjectTypeNotSupported

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.