Examples of Technology


Examples of com.google.api.ads.dfp.v201311.Technology

      // Create device manufacturer targeting.
      DeviceManufacturerTargeting deviceManufacturerTargeting = new DeviceManufacturerTargeting();
      deviceManufacturerTargeting.setIsTargeted(true);

      // Target the Google device manufacturer (40100).
      Technology deviceManufacturerTechnology = new Technology();
      deviceManufacturerTechnology.setId(40100L);
      deviceManufacturerTargeting
          .setDeviceManufacturers(new Technology[] {deviceManufacturerTechnology});
      technologyTargeting.setDeviceManufacturerTargeting(deviceManufacturerTargeting);

      // Create mobile device targeting.
      MobileDeviceTargeting mobileDeviceTargeting = new MobileDeviceTargeting();

      // Exclude the Nexus One device (604046).
      Technology mobileDeviceTechnology = new Technology();
      mobileDeviceTechnology.setId(604046L);
      mobileDeviceTargeting.setExcludedMobileDevices(new Technology[] {mobileDeviceTechnology});
      technologyTargeting.setMobileDeviceTargeting(mobileDeviceTargeting);

      // Create mobile device submodel targeting.
      MobileDeviceSubmodelTargeting mobileDeviceSubmodelTargeting =
          new MobileDeviceSubmodelTargeting();

      // Target the iPhone 4 device submodel (640003).
      Technology mobileDeviceSubmodelTechnology = new Technology();
      mobileDeviceSubmodelTechnology.setId(640003L);
      mobileDeviceSubmodelTargeting
          .setTargetedMobileDeviceSubmodels(new Technology[] {mobileDeviceSubmodelTechnology});
      technologyTargeting.setMobileDeviceSubmodelTargeting(mobileDeviceSubmodelTargeting);

      // Create targeting.
View Full Code Here

Examples of com.tcs.hrr.domain.Technology

  }

  public Technology findById(java.lang.Integer id) {
    log.debug("getting Technology instance with id: " + id);
    try {
      Technology instance = (Technology) getHibernateTemplate().get(
          "com.tcs.hrr.domain.Technology", id);
      return instance;
    } catch (RuntimeException re) {
      log.error("get failed", re);
      throw re;
View Full Code Here

Examples of com.tcs.hrr.domain.Technology

  }

  public Technology merge(Technology detachedInstance) {
    log.debug("merging Technology instance");
    try {
      Technology result = (Technology) getHibernateTemplate().merge(
          detachedInstance);
      log.debug("merge successful");
      return result;
    } catch (RuntimeException re) {
      log.error("merge failed", re);
View Full Code Here

Examples of net.sf.minuteProject.loader.catalog.technologycatalog.node.Technology

 
  public static List<Technology> getDependentTechnologies (Technology technology, String catalogDir) {
    List<Technology> list = new ArrayList<Technology>();
    List<String> targets = ParserUtils.getList(technology.getDependsOnTargets());
    for (String targetName : targets) {
      Technology tech = getTechnologyByTargetName(targetName, catalogDir);
      if (tech!=null)
        list.add(tech);
    }
    return list;
  }
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.