Package net.sf.arianne.marboard.client.entity.meta

Examples of net.sf.arianne.marboard.client.entity.meta.User


   */
  public static Entity create(RPObject rpobject) {
    String rpclass = rpobject.getRPClass().getName();

    if (rpclass.equals("user")) {
      return new User(rpobject);
    } else if (rpclass.equals("dot")) {
      return new Dot(rpobject);
    } else if (rpclass.equals("rectangle")) {
      return new Rectangle(rpobject);
    } else if (rpclass.equals("straight_line")) {
View Full Code Here

TOP

Related Classes of net.sf.arianne.marboard.client.entity.meta.User

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.