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

com.ruijc.Href Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.ruijc;

/**
 * 超链接对象
 *
 * @author storezhang
 */
public class Href {

    private String link;
    private String text;

    public Href(String link, String text) {
        this.link = link;
        this.text = text;
    }

    public String getLink() {
        return link;
    }

    public void setLink(String link) {
        this.link = link;
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy