View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   
5   // not sure if specifiers should have to be declared, but it is easy -
6   // when the thing they specify needs to get its own spec
7   
8   public interface Specifier extends IDd { //  extends Declared {
9   
10  
11      Object make(String type);
12  
13      String getSpecifiedTypeName(Specified spcd);
14  
15  }