com.hp.hpl.jena.eyeball
Interface PredicateRegister

All Known Implementing Classes:
SimplePredicateRegister

public interface PredicateRegister

Author:
kers

Field Summary
static PredicateRegister triv
          A trivial (incomplete) predicate register that doesn't do anything.
 
Method Summary
 java.util.List<com.hp.hpl.jena.rdf.model.Property> getRegisteredPredicates()
          Answer a list containing all the registered properties, ordered according to the ordering pairs given by order.
 void order(com.hp.hpl.jena.rdf.model.Property p1, com.hp.hpl.jena.rdf.model.Property p2)
          Register properties p1 and p2 with this register.
 void register(com.hp.hpl.jena.rdf.model.Property p)
          Register property p with this register.
 

Field Detail

triv

static final PredicateRegister triv
A trivial (incomplete) predicate register that doesn't do anything.

Method Detail

register

void register(com.hp.hpl.jena.rdf.model.Property p)
Register property p with this register.


order

void order(com.hp.hpl.jena.rdf.model.Property p1,
           com.hp.hpl.jena.rdf.model.Property p2)
Register properties p1 and p2 with this register. Furthermore, p1 is deemed more "significant" than p2 and a renderer may wish to output p1 before p2 in an item report.


getRegisteredPredicates

java.util.List<com.hp.hpl.jena.rdf.model.Property> getRegisteredPredicates()
Answer a list containing all the registered properties, ordered according to the ordering pairs given by order.