mirror of
https://github.com/DanilaFe/abacus
synced 2024-12-22 07:20:09 -08:00
Add documentation type for a documentation entry.
This commit is contained in:
parent
5f80c0bf14
commit
ea5ff08c09
|
@ -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