All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openbakery.simulators.SimulatorDevicePair.groovy Maven / Gradle / Ivy

Go to download

XCode-Plugin is a plugin to allow custom XCode projects to build as generated by CMake

The newest version!
package org.openbakery.simulators

class SimulatorDevicePair {

	public String identifier
	public SimulatorDevice watch
	public SimulatorDevice phone

	public SimulatorDevicePair(String line) {

		//   291E69F5-A889-47EA-87FA-7581E610E570 (disconnected)
		def tokenizer = new StringTokenizer(line, "()");
		if (tokenizer.hasMoreTokens()) {
			identifier = tokenizer.nextToken().trim();
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy