Package steal

Examples of steal.Name


    return n;
  }

  public Object createObject(String name) {
    ObjectImpl o=new ObjectImpl();
    Name n=createName(name);
    o.setName(n);
    n.setParent(o);
    return o;
  }
View Full Code Here


    return o;
  }

  public Operation createOperation(String name) {
    OperationImpl o=new OperationImpl();
    Name n=createName(name.equals("new")?"<init>":name);
    o.setName(n);
    n.setParent(o);
    return o;
  }
View Full Code Here

    return o;
  }

  public Type createType(String name) {
    TypeImpl t=new TypeImpl();
    Name n=createName(name);
    t.setName(n);
    n.setParent(t);
    return t;
  }
View Full Code Here

TOP

Related Classes of steal.Name

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.