![JAR search and dependency download from the Maven repository](/logo.png)
org.daisy.pipeline.client.models.script.Homepage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clientlib-java Show documentation
Show all versions of clientlib-java Show documentation
A Java library for communicating with the DAISY Pipeline 2.
package org.daisy.pipeline.client.models.script;
/** A homepage. */
public class Homepage {
public String href;
public String desc;
public Homepage(String href, String desc) {
this.href = href;
this.desc = desc;
}
public String toString() {
return ""+desc+"";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy