X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=doc%2Findex.html;h=0b489cba473ed1e13f31145e4a2e11c999300635;hb=9f9212a6430077d4cbe809cfa409b1a621d7f388;hp=2df150c40e25986ec1622cbfd111ee53e490d271;hpb=26f09b1ebcafae67855b55ad588d5332a107d202;p=svjatoslav_commons.git diff --git a/doc/index.html b/doc/index.html old mode 100755 new mode 100644 index 2df150c..0b489cb --- a/doc/index.html +++ b/doc/index.html @@ -1,44 +1,392 @@ - - + + + - -Svjatoslav Commons + + + +Svjatoslav Commons - Java library of commonly used functions + + + + -

Svjatoslav Commons - Java library of commonly used functions

- Download -    - Online homepage -    - Other applications hosted on svjatoslav.eu -
-Library author:
-    Svjatoslav Agejenko
-    Homepage: http://svjatoslav.eu
-    Email: svjatoslav@svjatoslav.eu
-
-This software is distributed under GNU GENERAL PUBLIC LICENSE Version 2.
-
-
-Library contains:
-    * Wildcards matcher.
-        (?, *)
-        
-    * Commandline arguments parsing, validating, help generating library. 
-   
-    * File path parser.
-   
-    * Graphical error dialog.
-    
-        Reusable graphical dialog to capture and show program exceptions
-        and associated program call stack traceback.
-
-    * Primitive URL parameters encoder / decoder.
-
-Instructions to embed svjatoslav-commons in your project as a library.  
+
+

Svjatoslav Commons - Java library of commonly used functions

+
+

Table of Contents

+ +
+ +
+

1. General

+
+ +
+ +
+

1.1. Source code

+
+ +
+
+
+ +
+

2. Library contents

+
+
    +
  • See JavaDoc.
  • + +
  • +Bit input and output streams. +

    +
    +eu.svjatoslav.commons.data.BitInputStream
    +eu.svjatoslav.commons.data.BitOutputStream
    +
  • + +
  • +Slightly enhanced data input and output streams. +

    +
    +eu.svjatoslav.commons.data.EnhancedDataInputStream
    +eu.svjatoslav.commons.data.EnhancedDataOutputStream
    +
  • + +
  • +Byte array to HEX string converter. +

    +
    +eu.svjatoslav.commons.data.HexConverter
    +
  • + +
  • +Utility that tries to quess user desktop directory. (Quite ugly and +unreliable. Better solution is needed.) +

    +
    +eu.svjatoslav.commons.file.CommonPathResolver
    +
  • + +
  • +File path parser. +

    +
    +eu.svjatoslav.commons.file.FilePathParser
    +
  • + +
  • +File IO helper. +

    +
    +eu.svjatoslav.commons.file.IOHelper
    +
  • + +
  • Graphical error dialog. +
      +
    • +Reusable graphical dialog to capture and show program exceptions +and associated program call stack traceback. +

      +
      +eu.svjatoslav.commons.gui.dialog.ExceptionDialog
      +
    • +
  • + +
  • +Primitive and simple component to add navigation menus to the web +sites. +

    +
    +eu.svjatoslav.commons.network.navigation
    +
  • + +
  • +String tokenizer. +

    +
    +eu.svjatoslav.commons.string.tokenizer
    +
  • + +
  • +Improved String, optimized for dealing with prefixes and suffixes. +

    +
    +eu.svjatoslav.commons.string.String2
    +
  • + +
  • +Wildcards matcher. (?, *) +

    +
    +eu.svjatoslav.commons.string.WildCardMatcher#match
    +
  • +
+
+
+ +
+

3. Usage

+
+

+Instructions to embed svjatoslav-commons in your project as a library: +

+ +

+Maven pom.xml file snippet: +

+ +
+
<dependencies>
+    ...
+    <dependency>
+        <groupId>eu.svjatoslav</groupId>
+        <artifactId>svjatoslavcommons</artifactId>
+        <version>1.9</version>
+    </dependency>
+    ...
+</dependencies>
+
 
+<repositories>
+    ...
+    <repository>
+        <id>svjatoslav.eu</id>
+        <name>Svjatoslav repository</name>
+        <url>http://www2.svjatoslav.eu/maven/</url>
+    </repository>
+    ...
+</repositories>
 
+
+
+
+
+
+

Author: Svjatoslav Agejenko

+

Created: 2022-07-13 Wed 03:58

+

Validate

+
- \ No newline at end of file +