Breadcrumb.java
404 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.cq.projects.ui;
public class Breadcrumb {
private final String title;
private final String href;
public Breadcrumb(String title, String href) {
this.title = title;
this.href = href;
}
public String getTitle() {
return this.title;
}
public String getHref() {
return this.href;
}
}