Examples of appendDevice()


Examples of net.sf.uadetector.internal.data.DataBuilder.appendDevice()

      for (final DevicePattern devicePattern : devicePatterns) {
        builder.appendDevicePattern(devicePattern);
      }
      final List<Device> devices = deserializeType(context, entry, SerializableDataField.DEVICES, Device.class);
      for (final Device device : devices) {
        builder.appendDevice(device);
      }
      if (SerializableDataField.VERSION.getName().equals(entry.getKey())) {
        builder.setVersion(entry.getValue().getAsString());
      }
    }
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.