Package com.sun.jini.action

Examples of com.sun.jini.action.GetLongAction


  tryAction(new GetIntegerAction("test.Integer",
               INTEGER_DEFAULT.intValue()),
      true,
      INTEGER_DEFAULT);

  tryAction(new GetLongAction("test.Long"),
      false,
      LONG_VALUE);
  tryAction(new GetLongAction("test.Long"),
      true,
      null);

  tryAction(new GetLongAction("test.Long", LONG_DEFAULT.longValue()),
      false,
      LONG_VALUE);
  tryAction(new GetLongAction("test.Long", LONG_DEFAULT.longValue()),
      true,
      LONG_DEFAULT);

  tryAction(new GetPropertyAction("test.Property"),
      false,
View Full Code Here

TOP

Related Classes of com.sun.jini.action.GetLongAction

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.