org.openbakery.simulators.SimulatorDevicePair.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xcode-plugin Show documentation
Show all versions of xcode-plugin Show documentation
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();
}
}
}