Examples of InstanceInfo


Examples of org.neo4j.management.InstanceInfo

    {
        Neo4jManager neo4j = new Neo4jManager( db.getManagementBean( Kernel.class ) );
        InstanceInfo[] instances = neo4j.getHighAvailabilityBean().getInstancesInCluster();
        assertNotNull( instances );
        assertEquals( 1, instances.length );
        InstanceInfo instance = instances[0];
        assertNotNull( instance );
        String address = instance.getAddress();
        assertNotNull( "No JMX address for instance", address );
        String id = instance.getInstanceId();
        assertNotNull( "No instance id", id );
    }
View Full Code Here

Examples of org.testng.internal.InstanceInfo

    assertFalse(m_invoked, "Should only be invoked once");
    m_invoked = true;

    return new IInstanceInfo[] {
        new InstanceInfo(FactoryWithInstanceInfoTest2.class,
            new FactoryWithInstanceInfoTest2(42)),
        new InstanceInfo(FactoryWithInstanceInfoTest2.class,
            new FactoryWithInstanceInfoTest2(43)),
    };
  }
View Full Code Here

Examples of tv.porst.swfretools.parser.structures.InstanceInfo

        errors.add(String.format("Class at offset %08X could not be resolved as its instance index is out of bounds"));
        continue;
      }

      final ClassInfo classInfo = data.getClasses().get(i);
      final InstanceInfo instanceInfo = data.getInstances().get(i);

      classes.add(resolveClass(data, classInfo, instanceInfo, methodMapping, errors));
    }

    return classes;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.