View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   public interface NameValuePairOnly {
4   
5   
6       String getName();
7   
8       String getValue();
9   
10  
11  }