Package com.google.api.gbase.client

Examples of com.google.api.gbase.client.GoogleBaseEntry.addHtmlLink()


    if (idUrl != null) {
      entry.setId(idUrl);
    }
    entry.setTitle(TextConstruct.create(TextConstruct.Type.TEXT, title, null));
    if (url != null) {
      entry.addHtmlLink(url, null, null);
    }
    if (description != null) {
      // If the original content was not TEXT, the formatting is lost
      entry.setContent(
          TextConstruct.create(TextConstruct.Type.TEXT, description, null));
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.