mirror of
https://github.com/DanilaFe/abacus
synced 2026-01-19 05:15:19 +00:00
Add documentation type for a documentation entry.
This commit is contained in:
@@ -0,0 +1,7 @@
|
|||||||
|
package org.nwapw.abacus.function;
|
||||||
|
|
||||||
|
public enum DocumentationType {
|
||||||
|
|
||||||
|
FUNCTION
|
||||||
|
|
||||||
|
}
|
||||||
@@ -10,6 +10,8 @@ package org.nwapw.abacus.function
|
|||||||
* @param name the name of the function in English.
|
* @param name the name of the function in English.
|
||||||
* @param description the short description of this function.
|
* @param description the short description of this function.
|
||||||
* @param longDescription the full 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,
|
data class Documentation(val codeName: String, val name: String,
|
||||||
val description: String, val longDescription: String)
|
val description: String, val longDescription: String,
|
||||||
|
val type: DocumentationType)
|
||||||
Reference in New Issue
Block a user