Mercurial Hosting > nabble
view src/nabble/naml/compiler/GenericNamespace.java @ 0:7ecd1a4ef557
add content
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Thu, 21 Mar 2019 19:15:52 -0600 |
| parents | |
| children |
line wrap: on
line source
package nabble.naml.compiler; import java.util.List; interface GenericNamespace { public boolean isGlobal(); public boolean isTransparent(); public List<String> names(); public String getId(); }
