View Javadoc

1   package org.apache.commons.contract;
2   
3   import java.util.List;
4   
5   public interface Context {
6       public Store getStore(String id);
7   
8       void addInformation(Information information);
9   
10      public List getInformations();
11  
12  }