Example usage for com.google.gwt.user.client.ui Anchor subclass-usage

List of usage examples for com.google.gwt.user.client.ui Anchor subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui Anchor subclass-usage.

Usage

From source file burrito.client.crud.input.RelatedEntityEditAnchor.java

public class RelatedEntityEditAnchor extends Anchor {

    private static CrudMessages labels = GWT.create(CrudMessages.class);
    private InfoMessagePopup popup = new InfoMessagePopup();

    public RelatedEntityEditAnchor(final String relatedEntityClassName,

From source file ch.heftix.mailxel.client.AttachmentLink.java

public class AttachmentLink extends Anchor {

    public AttachmentLink(final String text, final String target) {

        setText(text);
        addClickHandler(new ClickHandler() {

From source file com.agnie.gwt.common.client.widget.NewTabAnchor.java

/**
 * @author Pandurang Patil 11-Mar-2014
 * 
 */
public class NewTabAnchor extends Anchor {
    String href;

From source file com.cubusmail.client.widgets.EmailAddressLink.java

/**
 * Hyperlink for email addresses.
 * 
 * @author Juergen Schlierf
 */
public class EmailAddressLink extends Anchor {

From source file com.devbliss.gwtbliss.client.ui.ImageAnchor.java

/**
 * Anchor with an embedded image.
 *
 * @author <a href="mailto:jb@barop.de">Johannes Barop</a>
 *
 */

From source file com.github.gwtbootstrap.client.ui.Brand.java

/**
 * Navbar widget that shows text in a large font.
 * 
 * <p>
 * Usually used for the name of the website or brand.
 * </p>

From source file com.github.gwtbootstrap.client.ui.Close.java

/**
 * Icon ("&times;") that indicates that something can be closed.
 * 
 * <p>
 * <h3>UiBinder Usage:</h3>
 * 

From source file com.google.gerrit.client.changes.DownloadCommandLink.java

abstract class DownloadCommandLink extends Anchor implements ClickHandler {
    final AccountGeneralPreferences.DownloadCommand cmdType;

    DownloadCommandLink(AccountGeneralPreferences.DownloadCommand cmdType, String text) {
        super(text);
        this.cmdType = cmdType;

From source file com.google.gerrit.client.changes.DownloadUrlLink.java

class DownloadUrlLink extends Anchor implements ClickHandler {
    final AccountGeneralPreferences.DownloadScheme urlType;
    final String urlData;

    DownloadUrlLink(AccountGeneralPreferences.DownloadScheme urlType, String text, String urlData) {
        super(text);

From source file com.google.gerrit.client.download.DownloadCommandLink.java

public abstract class DownloadCommandLink extends Anchor implements ClickHandler {
    public static class CopyableCommandLinkFactory {
        protected CopyableLabel copyLabel = null;
        protected Widget widget;

        public class CheckoutCommandLink extends DownloadCommandLink {