Skip to content

Commit

Permalink
att*
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimbellyf committed Feb 20, 2019
1 parent a19c0be commit 6a9c192
Show file tree
Hide file tree
Showing 70 changed files with 9,756 additions and 597 deletions.
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

out
.classpath
.project
.settings
.metadata
*.log
*.zip
*.class
*.swp
target
classes
build
bin
classes
*~


# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/dist/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 AndersonRodr

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
73 changes: 73 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<!-- By default, only the Clean and Build commands use this build script. -->
<!-- Commands such as Run, Debug, and Test only use this build script if -->
<!-- the Compile on Save feature is turned off for the project. -->
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
<!-- in the project's Project Properties dialog box.-->
<project name="LocadoraFilmes" default="default" basedir=".">
<description>Builds, tests, and runs the project LocadoraFilmes.</description>
<import file="nbproject/build-impl.xml"/>
<!--
There exist several targets which are by default empty and which can be
used for execution of your tasks. These targets are usually executed
before and after some main targets. They are:
-pre-init: called before initialization of project properties
-post-init: called after initialization of project properties
-pre-compile: called before javac compilation
-post-compile: called after javac compilation
-pre-compile-single: called before javac compilation of single file
-post-compile-single: called after javac compilation of single file
-pre-compile-test: called before javac compilation of JUnit tests
-post-compile-test: called after javac compilation of JUnit tests
-pre-compile-test-single: called before javac compilation of single JUnit test
-post-compile-test-single: called after javac compilation of single JUunit test
-pre-jar: called before JAR building
-post-jar: called after JAR building
-post-clean: called after cleaning build products
(Targets beginning with '-' are not intended to be called on their own.)
Example of inserting an obfuscator after compilation could look like this:
<target name="-post-compile">
<obfuscate>
<fileset dir="${build.classes.dir}"/>
</obfuscate>
</target>
For list of available properties check the imported
nbproject/build-impl.xml file.
Another way to customize the build is by overriding existing main targets.
The targets of interest are:
-init-macrodef-javac: defines macro for javac compilation
-init-macrodef-junit: defines macro for junit execution
-init-macrodef-debug: defines macro for class debugging
-init-macrodef-java: defines macro for class execution
-do-jar: JAR building
run: execution of project
-javadoc-build: Javadoc generation
test-report: JUnit report generation
An example of overriding the target for project execution could look like this:
<target name="run" depends="LocadoraFilmes-impl.jar">
<exec dir="bin" executable="launcher.exe">
<arg file="${dist.jar}"/>
</exec>
</target>
Notice that the overridden target depends on the jar target and not only on
the compile target as the regular run target does. Again, for a list of available
properties which you can use, check the target you are overriding in the
nbproject/build-impl.xml file.
-->
</project>
Binary file removed build/classes/Categoria/Categoria.class
Binary file not shown.
Binary file modified build/classes/cliente/view/BuscarClienteJF$15.class
Binary file not shown.
Binary file modified build/classes/cliente/view/BuscarClienteJF.class
Binary file not shown.
Binary file modified build/classes/cliente/view/CadastroPFisica$5.class
Binary file not shown.
Binary file modified build/classes/cliente/view/CadastroPFisica.class
Binary file not shown.
Binary file modified build/classes/cliente/view/ClienteJF.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$1.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$10.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$11.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$2.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$3.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$4.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$5.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$6.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$7.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$8.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF$9.class
Binary file not shown.
Binary file removed build/classes/cliente/view/PessoaFisicaJF.class
Binary file not shown.
Loading

0 comments on commit 6a9c192

Please sign in to comment.