
org.semantictools.frame.model.ContainerRestriction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semantictools-context-renderer Show documentation
Show all versions of semantictools-context-renderer Show documentation
A library used to generate documentation for media types associated with a JSON-LD context
The newest version!
package org.semantictools.frame.model;
public class ContainerRestriction {
private Frame containerType;
private Uri membershipPredicate;
private Uri membershipSubject;
public ContainerRestriction(Frame containerType, Uri membershipSubject, Uri membershipPredicate) {
this.containerType = containerType;
this.membershipPredicate = membershipPredicate;
this.membershipSubject = membershipSubject;
}
public Uri getMembershipPredicate() {
return membershipPredicate;
}
public Uri getMembershipSubject() {
return membershipSubject;
}
public Frame getContainerType() {
return containerType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy