-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathprivate.xml
More file actions
30 lines (19 loc) · 860 Bytes
/
Copy pathprivate.xml
File metadata and controls
30 lines (19 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>private</name>
<category>Structure</category>
<subcategory></subcategory>
<usage>Web & Application</usage>
<description><![CDATA[
This keyword is used to disallow other classes access to the fields and methods within a class. The <b>private</b> keyword is used before a field or method that you want to be available only within the class. In Processing, all fields and methods are public unless otherwise specified by the <b>private</b> keyword.<br />
<br />
This keyword is an essential part of Java programming and is not usually used with Processing. Consult a Java language reference or tutorial for more information.
]]></description>
<related>
public
</related>
<availability>1.0</availability>
<type>Keyword</type>
<level>Extended</level>
<partof>PDE</partof>
</root>