Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
b8b3769
Same lecture02 example for Netbeans
ilya-lysko Sep 7, 2017
09c98f3
add new classes
kronoker Sep 17, 2017
34ef589
add new classes
kronoker Sep 17, 2017
5bce2cd
Added lecture03 example from Ilya
ilya-lysko Sep 17, 2017
384f85c
just 4 pull
kronoker Sep 18, 2017
f339d5b
Merge branch 'netbeansBranch' of https://github.com/Kinetikm/TextClas…
kronoker Sep 18, 2017
4808909
Added bomberman example from lesson. Added packages structure for hom…
ilya-lysko Sep 18, 2017
a318fdb
just 4 pull
kronoker Sep 22, 2017
6767e44
new commit
kronoker Sep 22, 2017
1421ad2
Examples for lecture04.
ilya-lysko Sep 24, 2017
4acee87
new commit
kronoker Sep 25, 2017
b366d0b
new comit
kronoker Sep 25, 2017
a548206
commit 3 files
kronoker Sep 25, 2017
9787430
delete MathService.java
kronoker Sep 27, 2017
5cb04b1
new commit
kronoker Sep 27, 2017
84068f1
new commit
kronoker Sep 27, 2017
7020d5d
new commit
kronoker Sep 27, 2017
b87d851
add result
kronoker Sep 28, 2017
4348fe9
change files
kronoker Sep 28, 2017
441756f
change SequenceProcessor and CountVectorizer
kronoker Oct 2, 2017
4d36cac
add in CountVectorizer method preprocess and countWords
kronoker Oct 2, 2017
a618adb
change CountVectorizer
kronoker Oct 2, 2017
95b518a
commit private.xml
kronoker Oct 2, 2017
ad1e12d
change preprocess method
kronoker Oct 2, 2017
acdbceb
add out
kronoker Oct 2, 2017
26206f1
change CountVectorizer and PorterStemmer
kronoker Oct 2, 2017
bdd3840
change CountVectorizer
kronoker Oct 8, 2017
d8ea4cb
new commit
kronoker Oct 8, 2017
28fdfa7
add MyOwnArrayList and Node
kronoker Oct 10, 2017
fb9f440
change MyOwnArrayList
kronoker Oct 11, 2017
1c3a0d4
add myOwnLinkedList
kronoker Oct 15, 2017
023292a
change MyOwnLinkedList, Node, MyOwnArrayList
kronoker Oct 15, 2017
6959756
change FileReader
kronoker Oct 18, 2017
c437c76
change Lists
kronoker Oct 23, 2017
5f6b9cf
change idea.xml
kronoker Oct 23, 2017
71ad1fd
add ignore folders .idea and build
kronoker Oct 23, 2017
bafb039
change CountVectorizer
kronoker Nov 6, 2017
38c835d
create lectureDB
kronoker Nov 26, 2017
910ce18
create lectureSwing
kronoker Dec 10, 2017
0346618
Проект собран
kronoker Dec 11, 2017
55a9a0e
change Reading
kronoker Dec 24, 2017
2ce516f
change Reading again
kronoker Dec 25, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

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="TextClassifierProject" default="default" basedir=".">
<description>Builds, tests, and runs the project TextClassifierProject.</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="TextClassifierProject-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 added lib/antlr-2.7.7.jar
Binary file not shown.
Binary file added lib/classmate-1.3.0.jar
Binary file not shown.
Binary file added lib/dom4j-1.6.1.jar
Binary file not shown.
Binary file added lib/hibernate-commons-annotations-5.0.1.Final.jar
Binary file not shown.
Binary file added lib/hibernate-core-5.2.12.Final.jar
Binary file not shown.
Binary file added lib/hibernate-jpa-2.1-api-1.0.0.Final.jar
Binary file not shown.
Binary file added lib/jandex-2.0.3.Final.jar
Binary file not shown.
Binary file added lib/javassist-3.20.0-GA.jar
Binary file not shown.
Binary file added lib/jboss-logging-3.3.0.Final.jar
Binary file not shown.
Binary file not shown.
Binary file added lib/mysql-connector-java-5.0.8-bin.jar
Binary file not shown.
Loading