mirror of
https://github.com/DanilaFe/abacus
synced 2025-04-22 00:24:12 -07:00
Add documentation type for a documentation entry.
This commit is contained in:
parent
c6bdf4072e
commit
d0e36f5f66
@ -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)
|
Loading…
Reference in New Issue
Block a user