org.jbake.model.BaseModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbake-core Show documentation
Show all versions of jbake-core Show documentation
JBake is a Java based open source static site/blog generator for developers.
package org.jbake.model;
import java.util.HashMap;
public abstract class BaseModel extends HashMap {
public String getUri() {
return (String) get(ModelAttributes.URI);
}
public void setUri(String uri) {
put(ModelAttributes.URI, uri);
}
public void setName(String name) {
put(ModelAttributes.NAME, name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy