• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[test](../index.md) / [C](./index.md)
2
3# C
4
5`protected open class C`
6
7```
8public abstract class Test {
9    /**
10     * Summary for Function
11     * @param name is String parameter
12     * @param value is int parameter
13     */
14    protected final void fn(String name, int value) {
15
16    }
17
18    protected void openFn() {}
19}
20```
21
22### Constructors
23
24| [&lt;init&gt;](-init-.md) | `C()`<br>
25
26```
27public abstract class Test {
28    /**
29     * Summary for Function
30     * @param name is String parameter
31     * @param value is int parameter
32     */
33    protected final void fn(String name, int value) {
34
35    }
36
37    protected void openFn() {}
38}
39<br>```
40<br> |
41
42