Examples of Contact


Examples of com.compomics.util.pride.prideobjects.Contact

    private void okJButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okJButtonActionPerformed

        ArrayList<Contact> contacts = new ArrayList<Contact>();

        for (int i = 0; i < contactsJTable.getRowCount(); i++) {
            contacts.add(new Contact(
                    (String) contactsJTable.getValueAt(i, 1),
                    (String) contactsJTable.getValueAt(i, 2),
                    (String) contactsJTable.getValueAt(i, 3)));
        }
View Full Code Here

Examples of com.cos399.sumo.behaviors.Contact

    }
  }
 
  private void initializeSumoCompetition() {
    Behavior startupBehavior = new Startup();
    Behavior contactBehavior = new Contact();
    Behavior searchBehavior = new Search();
    Behavior[] behaviorArray = {startupBehavior, contactBehavior, searchBehavior};
   
    SumoProperties sp = SumoProperties.getInstance();
    SensorInitializer.initializeSensors();
View Full Code Here

Examples of com.cubusmail.gwtui.domain.Contact

      recipientFolder.setUserAccount( account );
      saveContactFolder( recipientFolder );
    }
    if ( addresses != null ) {
      for (InternetAddress address : addresses) {
        Contact contact = getContactByEmail( recipientFolder, address.getAddress() );
        if ( contact == null ) {
          contact = new Contact();
          contact.setLastName( address.getPersonal() );
          contact.setEmail( address.getAddress() );
          contact.setContactFolder( recipientFolder );
          saveContact( contact );
        }
      }
    }
  }
View Full Code Here

Examples of com.dietsodasoftware.yail.xmlrpc.model.Contact

    private static void exerciseAddDataService(YailClient client) throws InfusionsoftXmlRpcException, InfusionsoftParameterValidationException {
        final Map<String, Object> contactData = new HashMap<String, Object>();
        contactData.put(Contact.Field.FirstName.name(), "WebServiceClientDriver");
        contactData.put(Contact.Field.LastName.name(), "DemoCode");

        final Contact contact = new Contact(contactData);
        final DataServiceAddOperation<Contact> add = new DataServiceAddOperation<Contact>(Contact.class)
                .useModelPrototype(contact);

        final Integer newId = client.call(add);
        System.out.println("The new Contact's ID: " + newId);
View Full Code Here

Examples of com.fengjing.framework.springmvc.model.Contact

   * @param id
   * @return
   */
  @RequestMapping(value="/xml/{id}",produces=MediaType.APPLICATION_XML_VALUE)
  public @ResponseBody Contact getContactInXML(@PathVariable(value="id")int id){
    Contact contact = contactService.findById(id);
    return contact;
  }
View Full Code Here

Examples of com.gcrm.domain.Contact

            expect_close_date = dateFormat.parse(expectCloseDate);
        }
        opportunity.setExpect_close_date(expect_close_date);

        if ("Contact".equals(this.getRelationKey())) {
            Contact contact = contactService.getEntityById(Contact.class,
                    Integer.valueOf(this.getRelationValue()));
            Set<Contact> contacts = opportunity.getContacts();
            if (contacts == null) {
                contacts = new HashSet<Contact>();
            }
View Full Code Here

Examples of com.google.api.ads.dfp.axis.v201302.Contact

    // Get the ContactService.
    ContactServiceInterface contactService =
        dfpServices.get(session, ContactServiceInterface.class);

    // Get the contact.
    Contact contact = contactService.getContact(contactId);

    // Update the address of the contact.
    contact.setAddress("123 New Street, New York, NY, 10011");

    // Update the contact on the server.
    Contact[] contacts = contactService.updateContacts(new Contact[] {contact});

    for (Contact updatedContact : contacts) {
View Full Code Here

Examples of com.google.api.ads.dfp.axis.v201306.Contact

    // Get the ContactService.
    ContactServiceInterface contactService =
        dfpServices.get(session, ContactServiceInterface.class);

    // Create an advertiser contact.
    Contact advertiserContact = new Contact();
    advertiserContact.setName("Mr. Advertiser #" + new Random().nextInt(Integer.MAX_VALUE));
    advertiserContact.setEmail("advertiser@advertising.com");
    advertiserContact.setCompanyId(advertiserCompanyId);

    // Create an agency contact.
    Contact agencyContact = new Contact();
    agencyContact.setName("Ms. Agency #" + new Random().nextInt(Integer.MAX_VALUE));
    agencyContact.setEmail("agency@agencies.com");
    agencyContact.setCompanyId(agencyCompanyId);

    // Create the contacts on the server.
    Contact[] contacts =
        contactService.createContacts(new Contact[] {advertiserContact, agencyContact});
View Full Code Here

Examples of com.google.api.ads.dfp.axis.v201308.Contact

    // Get the ContactService.
    ContactServiceInterface contactService =
        dfpServices.get(session, ContactServiceInterface.class);

    // Get the contact.
    Contact contact = contactService.getContact(contactId);

    // Update the address of the contact.
    contact.setAddress("123 New Street, New York, NY, 10011");

    // Update the contact on the server.
    Contact[] contacts = contactService.updateContacts(new Contact[] {contact});

    for (Contact updatedContact : contacts) {
View Full Code Here

Examples of com.google.api.ads.dfp.axis.v201311.Contact

    // Get the ContactService.
    ContactServiceInterface contactService =
        dfpServices.get(session, ContactServiceInterface.class);

    // Get the contact.
    Contact contact = contactService.getContact(contactId);

    // Update the address of the contact.
    contact.setAddress("123 New Street, New York, NY, 10011");

    // Update the contact on the server.
    Contact[] contacts = contactService.updateContacts(new Contact[] {contact});

    for (Contact updatedContact : contacts) {
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.