All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nakedobjects.plugins.htmlviewer.html.Link Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.plugins.htmlviewer.html;

import java.io.PrintWriter;

import org.nakedobjects.plugins.htmlviewer.component.Component;


public class Link implements Component {
    private final String link;
    private final String name;
    private final String description;

    public Link(final String link, final String name, final String description) {
        this.link = link;
        this.name = name;
        this.description = description;
    }

    public void write(final PrintWriter writer) {
        writer.print("" + name + "");
    }

}

// Copyright (c) Naked Objects Group Ltd.




© 2015 - 2025 Weber Informatics LLC | Privacy Policy