Add documentation type for a documentation entry.

This commit is contained in:
Danila Fedorin 2017-08-08 10:54:36 -07:00
parent 5f80c0bf14
commit ea5ff08c09
2 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,7 @@
package org.nwapw.abacus.function;
public enum DocumentationType {
FUNCTION
}

View File

@ -10,6 +10,8 @@ package org.nwapw.abacus.function
* @param name the name of the function in English.
* @param description the short description of this function.
* @param longDescription the full description of this function.
* @param type the things this documentation maps to.
*/
data class Documentation(val codeName: String, val name: String,
val description: String, val longDescription: String)
val description: String, val longDescription: String,
val type: DocumentationType)