├── README.md
├── build.xml
├── build
└── classes
│ ├── .netbeans_automatic_build
│ ├── .netbeans_update_resources
│ ├── Icons
│ ├── icons8_digi_id_32px.png
│ ├── icons8_email_open_32px.png
│ ├── icons8_email_sign_32px.png
│ ├── icons8_group_32px.png
│ ├── icons8_home_32px.png
│ ├── icons8_password_32px_1.png
│ ├── icons8_phone_32px.png
│ ├── icons8_picture_32px.png
│ ├── icons8_profile_32px.png
│ └── icons8_user_32px.png
│ ├── MyConnection.class
│ ├── MyContactsForm$1.class
│ ├── MyContactsForm$10.class
│ ├── MyContactsForm$11.class
│ ├── MyContactsForm$12.class
│ ├── MyContactsForm$2.class
│ ├── MyContactsForm$3.class
│ ├── MyContactsForm$4.class
│ ├── MyContactsForm$5.class
│ ├── MyContactsForm$6.class
│ ├── MyContactsForm$7.class
│ ├── MyContactsForm$8.class
│ ├── MyContactsForm$9.class
│ ├── MyContactsForm.class
│ ├── MyContactsForm.form
│ ├── Myfunc.class
│ ├── Mymodel.class
│ ├── contact.class
│ ├── contactQuery.class
│ ├── loginForm$1.class
│ ├── loginForm$2.class
│ ├── loginForm$3.class
│ ├── loginForm$4.class
│ ├── loginForm$5.class
│ ├── loginForm$6.class
│ ├── loginForm$7.class
│ ├── loginForm.class
│ ├── loginForm.form
│ ├── singnupForm$1.class
│ ├── singnupForm$2.class
│ ├── singnupForm$3.class
│ ├── singnupForm$4.class
│ ├── singnupForm$5.class
│ ├── singnupForm$6.class
│ ├── singnupForm$7.class
│ ├── singnupForm.class
│ └── singnupForm.form
├── dist
└── javadoc
│ ├── allclasses-index.html
│ ├── allpackages-index.html
│ ├── class-use
│ ├── loginForm.html
│ └── singnupForm.html
│ ├── element-list
│ ├── help-doc.html
│ ├── index-files
│ ├── index-1.html
│ ├── index-2.html
│ └── index-3.html
│ ├── index.html
│ ├── jquery-ui.overrides.css
│ ├── legal
│ ├── COPYRIGHT
│ ├── LICENSE
│ ├── jquery.md
│ └── jqueryUI.md
│ ├── loginForm.html
│ ├── member-search-index.js
│ ├── module-search-index.js
│ ├── overview-tree.html
│ ├── package-search-index.js
│ ├── package-summary.html
│ ├── package-tree.html
│ ├── package-use.html
│ ├── resources
│ ├── glass.png
│ └── x.png
│ ├── script-dir
│ ├── images
│ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ ├── ui-bg_glass_65_dadada_1x400.png
│ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ ├── ui-icons_222222_256x240.png
│ │ ├── ui-icons_2e83ff_256x240.png
│ │ ├── ui-icons_454545_256x240.png
│ │ ├── ui-icons_888888_256x240.png
│ │ └── ui-icons_cd0a0a_256x240.png
│ ├── jquery-3.5.1.min.js
│ ├── jquery-ui.min.css
│ ├── jquery-ui.min.js
│ └── jquery-ui.structure.min.css
│ ├── script.js
│ ├── search.js
│ ├── serialized-form.html
│ ├── singnupForm.html
│ ├── stylesheet.css
│ ├── tag-search-index.js
│ └── type-search-index.js
├── manifest.mf
├── nbproject
├── build-impl.xml
├── genfiles.properties
├── private
│ ├── config.properties
│ ├── private.properties
│ └── private.xml
├── project.properties
└── project.xml
└── src
├── Icons
├── icons8_digi_id_32px.png
├── icons8_email_open_32px.png
├── icons8_email_sign_32px.png
├── icons8_group_32px.png
├── icons8_home_32px.png
├── icons8_password_32px_1.png
├── icons8_phone_32px.png
├── icons8_picture_32px.png
├── icons8_profile_32px.png
└── icons8_user_32px.png
├── MyConnection.java
├── MyContactsForm.form
├── MyContactsForm.java
├── Myfunc.java
├── Mymodel.java
├── contact.java
├── contactQuery.java
├── loginForm.form
├── loginForm.java
├── singnupForm.form
└── singnupForm.java
/README.md:
--------------------------------------------------------------------------------
1 | # Java_conect_app
2 |
3 | 
4 |
5 | Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible.
6 |
--------------------------------------------------------------------------------
/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
You can search for definitions of modules, packages, types, fields, methods, system properties and other terms defined in the API, using some or all of the name, optionally using "camelCase" abbreviations. For example:
85 |j.l.obj
will match "java.lang.Object"InpStr
will match "java.io.InputStream"HM.cK
will match "java.util.HashMap.containsKey(Object)"Refer to the Javadoc Search Specification for a full description of search features.
91 |Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:
100 |Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.
112 |Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.
141 |The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
142 |Packages and modules may contain pages with additional information related to the declarations nearby.
146 |Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.
150 |There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object
. Interfaces do not inherit from java.lang.Object
.
Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.
162 |The All Packages page contains an alphabetic index of all packages contained in the documentation.
166 |The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.
170 |The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.
174 |JLabel jLabel170 |
JLabel jLabel274 |
JLabel jLabel378 |
JLabel jLabelCose82 |
JLabel jLabelMn86 |
JPanel jPanel190 |
JPanel jPanel294 |
JPasswordField jPasswordField98 |
JTextField jTextFieldUsername102 |