Package com.sun.jini.test.spec.lookupservice.attribute

Examples of com.sun.jini.test.spec.lookupservice.attribute.Attr07


    private Entry[] attrs;

    public void setup(QAConfig sysConfig) throws Exception {
  super.setup(sysConfig);

  attr0 = new Attr07();
  attr0.setDefaults();
  attr1 = new Attr07();
  attr1.setDefaults();
  attr1.i0_07 = new Integer(0);

  attr2 = new Attr08();
  attr2.setDefaults();
View Full Code Here


  reg = registerItem(new ServiceItem(null, new Long(0), attrs),
         getProxy());
    }

    public void run() throws Exception {
  Attr07 tmpl0 = new Attr07();
  tmpl0.i0_07 = attr0.i0_07;
  Attr07 mod0 = new Attr07();
  mod0.i0_07 = new Integer(600);
  Attr07 tmpl1 = new Attr07();
  tmpl1.i0_07 = mod0.i0_07;
  Attr07 mod1 = new Attr07();
  mod1.i0_07 = attr0.i0_07;

  attr0.i0_07 = mod0.i0_07;

  Attr07 tmpl2 = new Attr07();
  tmpl2.i0_07 = new Integer(1);
  Attr07 mod2 = new Attr07();
  mod2.i0_07 = attr1.i0_07;
  Attr07 tmpl3 = new Attr07();
  tmpl3.i0_07 = attr1.i0_07;
  Attr07 mod3 = new Attr07();
  mod3.i0_07 = tmpl2.i0_07;

  attr1.i0_07 = tmpl2.i0_07;

  Attr08 tmpl4 = new Attr08();
View Full Code Here

TOP

Related Classes of com.sun.jini.test.spec.lookupservice.attribute.Attr07

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.