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

org.semantictools.frame.model.ContainerRestriction Maven / Gradle / Ivy

Go to download

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