WildcardTemplate.java :  » UnTagged » otsopack » otsopack » commons » data » Android Open Source

Android Open Source » UnTagged » otsopack 
otsopack » otsopack » commons » data » WildcardTemplate.java
/*
 * Copyright (C) 2008-2011 University of Deusto
 * 
 * All rights reserved.
 *
 * This software is licensed as described in the file COPYING, which
 * you should have received as part of this distribution.
 * 
 * This software consists of contributions made by many individuals, 
 * listed below:
 *
 * Author: FILLME
 *
 */
package otsopack.commons.data;

public class WildcardTemplate extends Template {
  private final String subject;
  private final String predicate;
  private final ITripleObject object;
  
  protected WildcardTemplate(String subject, String predicate, ITripleObject object){
    this.subject = subject;
    this.predicate = predicate;
    this.object = object;
  }

  public String getSubject() {
    return subject;
  }

  public String getPredicate() {
    return predicate;
  }

  public ITripleObject getObject() {
    return object;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.