X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.app.api%2Fsrc%2Forg%2Fargeo%2Fentity%2FTypology.java;fp=org.argeo.app.api%2Fsrc%2Forg%2Fargeo%2Fentity%2FTypology.java;h=5be27e3e54b4b93340d9089f648e4232390c38b9;hb=9dad741609777467f58a508e07139be9a086919b;hp=0000000000000000000000000000000000000000;hpb=41e9998f7f1c87c747c57f60c6bec65fa20757a6;p=gpl%2Fargeo-suite.git diff --git a/org.argeo.app.api/src/org/argeo/entity/Typology.java b/org.argeo.app.api/src/org/argeo/entity/Typology.java new file mode 100644 index 0000000..5be27e3 --- /dev/null +++ b/org.argeo.app.api/src/org/argeo/entity/Typology.java @@ -0,0 +1,15 @@ +package org.argeo.entity; + +import java.util.List; + +/** A structured and exhaustive set of {@link Term}s. */ +public interface Typology { + + String getId(); + + boolean isFlat(); + + List getSubTerms(); + + Term findTermByName(String name); +}